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);
答案 0 :(得分:0)
在for循环中
x + = spacing
,+=
是单个运算符(增量),应该无间距使用