Message 1 of 6
CREATING WALL WITH HATCHING
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Wall with hatching lisp routine, its has bug. when run the command then if all snap modes its not on and this command run its needed to zoom , its creating non ortho lines 😭😢☹️
anyone can solve this? I am a newbie in here! if you have any solution can share in here, pleasee
this command is T15
DEFUN C:T15 ()
(setq tm (getpoint "\ris Pilih titik mimiti as dinding:"))
(setq ta (getpoint "\nTerus milih titik tungtung as dinding: buru njing tong hararese gawena"))
(COMMAND "LAYER" "M" "aapwg1" "S" "aapwg1" "C" "1" "" "")
(command "LINE"
(polar tm (+ (angle tm ta) (dtr 90)) 75 )
(polar ta (+ (angle tm ta) (dtr 90)) 75 )
""
)
(command "LINE"
(polar tm (- (angle tm ta) (dtr 90)) 75 )
(polar ta (- (angle tm ta) (dtr 90)) 75 )
""
)
(setq pt1 (polar tm (+(angle tm ta) (dtr 90)) 50))
(setq pt2 (polar tm (-(angle tm ta) (dtr 90)) 50))
(setq pt3 (polar ta (+(angle tm ta) (dtr 90)) 50))
(setq pt4 (polar ta (-(angle tm ta) (dtr 90)) 50))
(COMMAND "LAYER" "M" "H2" "S" "H2" "C" "251" "" "")
(command "pline" pt1 pt3 pt4 pt2 "c")
(COMMAND "LAYER" "M" "H1" "S" "H1" "C" "250" "" "")
(command "hatch" "ansi32" "10" "0.0" "l" "")
)
This perfectly comand by screenshot