[OpenSCAD] OpenSCAD Digest, Vol 15, Issue 7
Giles Bathgate
giles.bathgate at gmail.com
Sat Mar 5 13:32:52 CET 2011
On 15 February 2011 04:19, Leemon Baird <leemon at leemon.com> wrote:
> - user-defined modules that call other user-defined modules to operate on their children (it complains about recursion, even though this isn't recursion).
I think this is just a bug the following re-produces the error:
module foo()
{
child();
}
module bar()
{
foo()child();
}
bar()cube([10,10,10]);
Regards
Giles
More information about the OpenSCAD
mailing list