discuss@lists.openscad.org

OpenSCAD general discussion Mailing-list

View all threads

Re: [OpenSCAD] Help with creating modules

N
Neon22
Mon, Aug 31, 2015 12:58 AM

think of module as a function definition. All you need to do, now that you've
defined the module "why", is to call it.

so:

module why() {
sphere(20);
}

why();

--
View this message in context: http://forum.openscad.org/Help-with-creating-modules-tp13647p13656.html
Sent from the OpenSCAD mailing list archive at Nabble.com.

think of module as a function definition. All you need to do, now that you've defined the module "why", is to call it. so: module why() { sphere(20); } why(); -- View this message in context: http://forum.openscad.org/Help-with-creating-modules-tp13647p13656.html Sent from the OpenSCAD mailing list archive at Nabble.com.