Message 1 of 7
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
snap grid lisp doesn't work well. I want to make a lisp that changes the spacing of snap and grid at the same time. It doesn't work well. I'm a beginner in lisp, so please help me.
(defun c:s1()
(command "snap" "100" "")
(command "grid" "100" "")
(princ)
)
(defun c:s2()
(command "snap" "200" "")
(command "grid" "200" "")
(princ)
)
Solved! Go to Solution.