Message 1 of 5
Routine that sets UCS to VIEW, runs dimangular, then sets the UCS back to WORLD
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I know this routine is a mess. But basically I'm trying to do what the title of the thread says.
Can't get the selection to work though. It wants to go straight past the dim command- to the UCS world. It's only because I don't have a good handle on how to use the selection set feature.
(defun c:drr ()
(command "ucs" "v")
(command "dimangular"
(ssget "x"))
(command "ucs" "w")
(princ))