Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

regen by windowing lisp?

0 views
Skip to first unread message

brian phelps

unread,
Apr 9, 1999, 3:00:00 AM4/9/99
to
<<< Message <370D7173...@remc8.k12.mi.us> was originally posted to 'autodesk.autocad.customer-files' on Thu, 08 Apr 1999 23:18:11 -0400.>>>

Looking for a lisp that regens by windowing a portion of the drawing
area. Thanks!

brian phelps

unread,
Apr 9, 1999, 3:00:00 AM4/9/99
to

rudy

unread,
Apr 9, 1999, 3:00:00 AM4/9/99
to
This lisp command should help you.

See attached


--
Ru...@whainc.com
Job Captain/MIS Assist./Programmer

brian phelps <pph...@remc8.k12.mi.us> wrote in article
<7elbr9$dc...@adesknews2.autodesk.com>...

eu.lsp

Alex Januszkiewicz

unread,
Apr 9, 1999, 3:00:00 AM4/9/99
to
This one is more dirty than running entmod on each of selected objects, but
on large selection will be much faster (I'm not fan of using "command" but
it works better in this case):

(defun c:reg(/ ss)
(setq ss(ssget))
(setvar"highlight"0)
(setvar"cmdecho"0)
(command "_.move" ss "" "@" "@")
(setvar"highlight"1)
(setvar"cmdecho"1)
(princ)
)


--
Alex Januszkiewicz
President, Intelcad Systems
Custom/Commercial ObjectARX, WHIPTK (DWF), OpenDWG and MDL Development
911 DWG Recovery Services
alexj.i...@shaw.wave.ca
http://www.cal.shaw.wave.ca/~intelcad/
1-(403)-703-6211


brian phelps <pph...@remc8.k12.mi.us> wrote in message
news:7elbr9$dc...@adesknews2.autodesk.com...

0 new messages