- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi everyone, i would like to make a very crude Lisp command whereby any circle i draw is then Scaled by 25.4. Using either the Circle Center as Basepoint or even Pause for user input to select Basepoint. Either Or would be fine...
I usually draft in millimeters, however if i need a 3.125'' dia imperial circle, i need to convert that value to MM, which is 79.375mm. And this ''conversion'' is what i want to bypass simply by inputing the imperial value for my circle in MM and then scaling by 25.4.
I have this done so far... And it doenst work! Can someone please advise ?
Thanks
(defun c:CC1 (/)
(command "circle")
(command "scale" "last" "" pause "25.4" "") ; scales last circle by 25.4 using the same basepoint or pauses for user input of basepoint
(princ)
)
Solved! Go to Solution.