|
| Re: Flatten Z-coordinates |
 |
Thu, 15 May 2008 06:52:15 +000 |
I had a survey which had been performed with 3D drawings in mind and so there
were splines in the drawing all at huge elevations and differing Z coordinates
for each control point. The final product we needed was a 2D drawing because the
client is hopeless and cannot handle 3D drawings. I find it easiest to turn all
these little command line tricks into scripts, so for those of you who don't
like macros, and can't be bothered typing all that in just add this to a LSP
file and stick it in your startup suite for quick usage:
(defun c:3dto2ddwg ()
(command "select" "all" "" "move"
"p" "" "0,0,1e99" "" "move"
"p" "" "0,0,-1e99" "")
|
| Post Reply
|
|
|
|
|
|
|
|
|
|