discuss@lists.openscad.org

OpenSCAD general discussion Mailing-list

View all threads

WARNING: Ignoring unknown module 'is_undef'

D
DarioPellegrini
Sun, May 26, 2019 8:01 AM

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/

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/
NH
nop head
Sun, May 26, 2019 8:07 AM

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

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 >
TP
Torsten Paul
Sun, May 26, 2019 8:10 AM

Those are functions, not modules, so

echo(is_undef(3)); // -> false

but

is_undef(3); // >> error: unknown module

ciao,
Torsten.

Those are functions, not modules, so echo(is_undef(3)); // -> false but is_undef(3); // >> error: unknown module ciao, Torsten.
D
DarioPellegrini
Sun, May 26, 2019 9:44 AM

tp3 wrote

Those are functions, not modules

Gosh, silly me! Thank you!

Ciao

--
Sent from: http://forum.openscad.org/

tp3 wrote > Those are functions, not modules Gosh, silly me! Thank you! Ciao -- Sent from: http://forum.openscad.org/