Message 1 of 7
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Looking for preview while pressing "tab" key circle of diameter of 100, 200, 300, respectively each press. then 4th press back to 100 and mouse clicks to draw the chosen diameter circle.
(defun c:z2 (/)
(setq p1 (getpoint "\np1"));center of circle
(setq option1 (command "_.circle" p1 "d" "100" "" ))
(setq option2 (command "_.circle" p1 "d" "200" "" ))
(setq option2 (command "_.circle" p1 "d" "300" "" ))
(grread (option1 option2 option3 ))
)
Solved! Go to Solution.