Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I wrote a simple lisp to convert a single vport from poligonal form to rectangular:
(defun c:vpr ()
(setvar "cmdecho" 0)
(setq switch (command "_.pspace"))
(setq selections (entsel "Select Polygonal VPort to convert to Rectangular: "))
(command "vpclip" selections "d" )
)
It works nice, but I need to convert a huge bunch of viewports at once...
Can you improve my programm in order to Convert All vports in All Layouts at once?
Any help will be very appreciated
Solved! Go to Solution.