Open darrenmothersele opened 10 years ago
Here's an example of how not to draw a circle...
scale 2 rotate shape vert 0,0 for i: 0 to TWO_PI step 0.1 vert sin(i),cos(i) end vert 0,1 end
Change the step value to an expression, eg PI / 2 and everything stops...
for i: 0 to TWO_PI step PI / 2
only hangs when for loop is inside shape - probably shape not passing up valid state correctly
Here's an example of how not to draw a circle...
Change the step value to an expression, eg PI / 2 and everything stops...