Message 1 of 5

Not applicable
07-04-2018
06:19 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi,
I really don't understand why entlast doesn't work with the area command. The command stops after the boundary command...
(defun c:superficie (/ ent center)
(setq center (getpoint "Specify internal point"))
(command "_boundary" center "")
(setq ent (entlast))
(command "_area" "_o" ent)
(princ)
)
Solved! Go to Solution.