Message 1 of 13
Lisp create boundary...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have 1 lisp to create Boundary, The way it works is to point to space and then make 1 Boundary, then combine them to total Boundary, but working with many object it takes a long time.
I want to select all objects at once and then create a total Boundary
Can you helps me??
(defun c:bo1()
(setq p (getpoint "pick :"))
(command "._boundary" "A" "O" "R" "" p "")
(Command "._region" "L" "")
(setq el (entlast)) (redraw el 3)
(while (setq p (getpoint "pick diem :"))
(command "._boundary" p "")
(Command "._region" "L" "")
(command "._union" el "L" "")
(setq el (entlast))
(redraw el 3)
)
(redraw el 4)
)