Message 1 of 22

Not applicable
03-22-2019
12:48 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello everyone,
So I am revisiting this topic coming back with more knowledge of lisp and trying to get everything automated.
I was hoping to make a lisp to draw circles within in a rectangle and center them on that rectangle.
I am struggling on how to go about doing this.
Can any one help help me with this?
It cannot be a hatch or super hatch they have to be individual circles created.
thanks a lot
See the attached notated drawing for all the details
(defun C:test (/ getcenter ) (defun getcenter (/ centroid) (setq centroid (trans (osnap (cadr (entsel "\nSelect polyline: " ) ) "_gcen" ) 1 0 ) ) ) (princ ) (getcenter) (command "circle" centroid "Diameter" ".315") )
Solved! Go to Solution.