We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
The text was updated successfully, but these errors were encountered:
only hangs when for loop is inside shape - probably shape not passing up valid state correctly
Sorry, something went wrong.
No branches or pull requests
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...
The text was updated successfully, but these errors were encountered: