Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I use these three lisp commands to manipulate the view.
(defun c:UO()
(command "._UCSFollow" "1" "UCS" "N" "Ob" )
)
(defun c:UP()
(command "._UCSFollow" "1" "UCS" "P")
)
(defun c:UW()
(command "._UCSFollow" "1" "._UCS" "W" "._UCSFollow" "0" )
)
Is it possible to restore the UCSFollow system variable to "0" in UO command?
Using this line, the selection of an object seems to interfere with the set of commands.
(command "._UCSFollow" "1" "UCS" "N" "Ob" "._UCSFollow" "0" )
UW works fine. I guess because there is not object that needs selecting.
Solved! Go to Solution.