Message 1 of 7

Not applicable
08-21-2018
01:39 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Why does this return True?
_$ (/= (GETVAR "INSBASE") (GETVAR "INSBASE"))
T
Say what now? TRYING to get my base point checked and set to (0,0,0) if it's not.
I.E.
(VL-LOAD-COM) (DEFUN C:SOMFUNC( / ZEROLIST) (SETQ ZEROLIST (LIST 0.0 0.0 0.0)) (COND ((/= (GETVAR "INSBASE") ZEROLIST)(SETVAR "INSBASE" ZEROLIST))
(T NIL) (PRINC) )
Solved! Go to Solution.