Hello,
I have been getting the annoying warning described here:
http://forum.openscad.org/A-warning-too-far-td25451.html and therefore I
have been trying the new commands of the is_ family.
I am on ArchLinux and even if the provided package is updated to v2019.05
the new commands are not recognized. I even compiled from the sources (with
flags EXPERIMENTAL SNAPSHOT), but still no luck in getting the new commands.
Am I missing something?
Thank you in advance!
--
Sent from: http://forum.openscad.org/
What does echo(version()) produce?
On Sun, 26 May 2019 at 09:02, DarioPellegrini pellegrini.dario@gmail.com
wrote:
Hello,
I have been getting the annoying warning described here:
http://forum.openscad.org/A-warning-too-far-td25451.html and therefore I
have been trying the new commands of the is_ family.
I am on ArchLinux and even if the provided package is updated to v2019.05
the new commands are not recognized. I even compiled from the sources (with
flags EXPERIMENTAL SNAPSHOT), but still no luck in getting the new
commands.
Am I missing something?
Thank you in advance!
--
Sent from: http://forum.openscad.org/
OpenSCAD mailing list
Discuss@lists.openscad.org
http://lists.openscad.org/mailman/listinfo/discuss_lists.openscad.org
Those are functions, not modules, so
echo(is_undef(3)); // -> false
but
is_undef(3); // >> error: unknown module
ciao,
Torsten.
tp3 wrote
Those are functions, not modules