-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
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
Generating lists with for loop does not work #13
Comments
Note that openscad.net and OpenSCAD are not related (they don't share any code). The manual for OpenSCAD doesn't apply to openscad.net. |
@kintel Is there a way to generate a list the same way? (Using a for loop, I mean) |
I'm not familiar with openscad.net - I'm the author of OpenSCAD :) |
@kintel Really, thats cool. Im actually teaching a class on it right now. Also,under the help tab, it the manual is the same as the OpenSCAD (same site) |
Gary's initial idea was to make this compatible with OpenSCAD, but as he mentions here on github: "This project is no longer actively maintained". |
Hi @cn145912 - yeah, as @kintel says this project hasn't been on my radar for quite a while. It's quite likely that I didn't implement this functionality originally and to be honest it's unlikely I will implement it now. |
@garyhodgson thanks. |
The example generation does not work.
(From wiki)
// generate a list with all values defined by a range
list1 = [ for (i = [0 : 2 : 10]) i ];
echo(list1); // ECHO: [0, 2, 4, 6, 8, 10]
The text was updated successfully, but these errors were encountered: