如何在这里使用间距?

时间:2018-02-03 18:05:45

标签: openframeworks

int spacing = 50; 
ofBeginShape(); 

for(int x = 0; x < ofGetWidth(); x + = spacing){ 
  ofCurveVertex(x,ofGetHeight()/ 2 + ofGetHeight()* 0.3f * sin(x * 0.01f + ofGetFrameNum()* 0.02f)) ; 
  } 
  ofEndShape(false); 

1 个答案:

答案 0 :(得分:0)

  

x + = spacing

在for循环中

+=是单个运算符(增量),应该无间距使用