How does one go about feeding the proper information to the extrim command
via lisp? (ie entity, and side to trim)...
Here's what I have so far: (sorry bout the CAPITALS)
(DEFUN C:INTRIM ()
(SETQ SS (SSGET '((0 . "INSERT")))
COUNT 0))
(REPEAT (SSLENGTH SS)
(SETQ E1 (SSNAME SS COUNT)
IPT (CDR (ASSOC 10 (ENTGET E1))))
(C:EXTRIM) <---------------Here is where I need to feed the entity E1
and the point IPT to the extrim command.
(SETQ COUNT (+ 1 COUNT))
)
)
HO HO HO...
Casey


Extrim within lisp
Reply With Quote