- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I'm trying to create a 3DPoly, but every time it draws it, it's only 2D. Is there a setting I'm missing? There is probably a simple answer, but I can't find it.
newPntList = ((-4.45 -3.511 0.29) (-4.2 -3.511 0) (-4.2 -3.765 0) (-4.45 -3.765 0.29))
I tried:
(apply 'command
(append
'(".3dpoly")
newPntList
'("")
)
)
I even tried:
(setq pnt1 (nth 0 newPntList)
pnt2 (nth 1 newPntList)
pnt3 (nth 2 newPntList)
pnt4 (nth 3 newPntList))
(command "3dpoly" pnt1 pnt2 pnt3 pnt4 "cl" "")
They both create a 2D polyline and disregard the Z from the list.
Can anyone shed some light on this?
Thanks
Solved! Go to Solution.
Link copied