Visual LISP, AutoLISP and General Customization
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

"Float" Routine

5 REPLIES 5
Reply
Message 1 of 6
Anonymous
168 Views, 5 Replies

"Float" Routine

Does anyone have a copy of the "Float" LISP routine?

Thanks!

Tela Andrews
tandrews@eptland.com
5 REPLIES 5
Message 2 of 6
Anonymous
in reply to: Anonymous

(defun C:FLOAT ()
(princ "\nSelect Objects to Float ...")
(setq sset (ssget))
(if sset
(progn
(command "_.COPY" sset "" "0,0,0" "@")
(command "_.ERASE" sset "")
)
)
(princ)
)


i pulled this from a message in the 2000.general ng titled;
xref draw order issues

dated 9/22/01

--
A2Ki, SurvCad CES, Win98 se
Remove NO SPAM from my email address to email

Jonathan J. Baker
R&R Engineers-Surveyors, Inc.
Denver, Colorado
_________________________
"atomic73" wrote in message
news:f089607.-1@WebX.maYIadrTaRb...
> Does anyone have a copy of the "Float" LISP routine?
> Thanks!
>
> Tela Andrews
> tandrews@eptland.com
>
>
Message 3 of 6
Anonymous
in reply to: Anonymous

Paul, don't you have something like that?


-Jason

"Jon Baker" wrote in message
news:E271A3C0357991248B3AC20BCF63C490@in.WebX.maYIadrTaRb...
> (defun C:FLOAT ()
> (princ "\nSelect Objects to Float ...")
> (setq sset (ssget))
> (if sset
> (progn
> (command "_.COPY" sset "" "0,0,0" "@")
> (command "_.ERASE" sset "")
> )
> )
> (princ)
> )
>
>
> i pulled this from a message in the 2000.general ng titled;
> xref draw order issues
>
> dated 9/22/01
>
> --
> A2Ki, SurvCad CES, Win98 se
> Remove NO SPAM from my email address to email
>
> Jonathan J. Baker
> R&R Engineers-Surveyors, Inc.
> Denver, Colorado
> _________________________
> "atomic73" wrote in message
> news:f089607.-1@WebX.maYIadrTaRb...
> > Does anyone have a copy of the "Float" LISP routine?
> > Thanks!
> >
> > Tela Andrews
> > tandrews@eptland.com
> >
> >
>
>
Message 4 of 6
Anonymous
in reply to: Anonymous

Hi Jon,
may I know what does this routine do?

--
danny leong
operations manager
the audience motivation company asia
10a bukit pasoh road
singapore 089824
tel : (65) 735 0785
fax : (65) 735 7827
mobile : (65) 9 822 3984

"Jon Baker" wrote in message
news:E271A3C0357991248B3AC20BCF63C490@in.WebX.maYIadrTaRb...
> (defun C:FLOAT ()
> (princ "\nSelect Objects to Float ...")
> (setq sset (ssget))
> (if sset
> (progn
> (command "_.COPY" sset "" "0,0,0" "@")
> (command "_.ERASE" sset "")
> )
> )
> (princ)
> )
>
>
> i pulled this from a message in the 2000.general ng titled;
> xref draw order issues
>
> dated 9/22/01
>
> --
> A2Ki, SurvCad CES, Win98 se
> Remove NO SPAM from my email address to email
>
> Jonathan J. Baker
> R&R Engineers-Surveyors, Inc.
> Denver, Colorado
> _________________________
> "atomic73" wrote in message
> news:f089607.-1@WebX.maYIadrTaRb...
> > Does anyone have a copy of the "Float" LISP routine?
> > Thanks!
> >
> > Tela Andrews
> > tandrews@eptland.com
> >
> >
>
>
Message 5 of 6
Anonymous
in reply to: Anonymous

It "floats" the selection set to the top of all the other entities in the
drawing via the copy command. Better than changing display order as this is
honored when xref'ed.

--
R. Robert Bell, MCSE
http://www.acadx.com


"danny" wrote in message
news:AC52DCA764A49BD5A487E93DBB9DF48A@in.WebX.maYIadrTaRb...
| Hi Jon,
| may I know what does this routine do?
|
Message 6 of 6
Anonymous
in reply to: Anonymous

Thanks !

danny

"R. Robert Bell" wrote in message
news:6CC3D274E25512375BA06AE93C1FF71F@in.WebX.maYIadrTaRb...
> It "floats" the selection set to the top of all the other entities in the
> drawing via the copy command. Better than changing display order as this
is
> honored when xref'ed.
>
> --
> R. Robert Bell, MCSE
> http://www.acadx.com
>
>
> "danny" wrote in message
> news:AC52DCA764A49BD5A487E93DBB9DF48A@in.WebX.maYIadrTaRb...
> | Hi Jon,
> | may I know what does this routine do?
> |
>
>
>

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk Design & Make Report

”Boost