Message 1 of 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
How do I draw rectangle offset 1" outside and make hatch associative.
this is what i have so far:
(defun C:PZ (); Protected Zone
(setq pnt1 (getpoint "Select upper left hand corner for placement of rectangle: "))
(setq pnt2 (getcorner pnt1 "Select lower right hand corner for placement of rectangle: "))
(command "rectangle" pnt1 pnt2)
(setq ent1 (entlast))
(command "-hatch" "P" "ANSI31" "25" "0" "S" ent1"" "")
)
Solved! Go to Solution.