hi…
i am a nubs of openframeork, i am trying to build a code derive from processiong.
the code in procession is :
stoke(255);
point(x,y);
how i can made a line composed by point in openframework?
the street of points that i want saw on the render is it:
void walker::step(){
int choice = int(ofRandom(4));
if(choice==0){
x++;
}else if(choice==1){
x–;
}else if(choice==2){
y++;
}else{
y–;
}
thanks…
by