Message 1 of 9
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi everyone,
I'm kinda diving into the LISP programing, and I got to the point where I wanted to do some exercise with drawing specific symbols with Lines, Polylines, Arcs etc. I wrote a LISP for a Polyline Octagon, and it's working perfectly, but only when I do some serious zoom in. When I zoom out to much it draws something else. Does someone know why this occurs, and how can I fix this zooming issue?
(defun c:UMF8 (/ pt1)
(setq pt1 (getpoint "\nPick point: "))
(command "_ucs" pt1 "")
(command "_PLINE" "2.5,5" "5,2.5" "5,-2.5" "2.5,-5" "-2.5,-5" "-5,-2.5" "-5,2.5" "-2.5,5" "2.5,5" "")
(command "_ucs" "world" "")
(princ)
) ; end defun
Thanks in advance.
Solved! Go to Solution.