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
I expect spread(n, spacing=10) to behave exactly as spread(n, spacing=[10, 0, 0])
spread(n, spacing=10)
spread(n, spacing=[10, 0, 0])
That is:
spread(n=3, spacing=10) cube(size=[3,2,1], center=true);
produces
The text was updated successfully, but these errors were encountered:
From documentation about spread():
spread()
spacing
xspread does what you are looking for.
xspread
spread(n=3, spacing=[10,0,0]) cube(size=[3,2,1], center=true); ymove(5) xspread(n=3, spacing=10) cube(size=[3,2,1], center=true);
Sorry, something went wrong.
revarbat
No branches or pull requests
I expect
spread(n, spacing=10)
to behave exactly asspread(n, spacing=[10, 0, 0])
That is:
Current behaviour
produces
The text was updated successfully, but these errors were encountered: