<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic CREATING WALL WITH HATCHING in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/creating-wall-with-hatching/m-p/10223883#M61697</link>
    <description>&lt;P&gt;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&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":loudly_crying_face:"&gt;😭&lt;/span&gt;&lt;span class="lia-unicode-emoji" title=":crying_face:"&gt;😢&lt;/span&gt;&lt;span class="lia-unicode-emoji" title=":frowning_face:"&gt;☹️&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;anyone can solve this? I am a newbie in here! if you have any solution can share in here, pleasee&lt;/P&gt;&lt;P&gt;this command is T15&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="lisp"&gt;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" "")
                
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This perfectly comand by screenshot&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot_3.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/904153i608342ADAA918E95/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot_3.png" alt="Screenshot_3.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 09 Apr 2021 04:33:48 GMT</pubDate>
    <dc:creator>rahmathide_legion</dc:creator>
    <dc:date>2021-04-09T04:33:48Z</dc:date>
    <item>
      <title>CREATING WALL WITH HATCHING</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/creating-wall-with-hatching/m-p/10223883#M61697</link>
      <description>&lt;P&gt;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&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":loudly_crying_face:"&gt;😭&lt;/span&gt;&lt;span class="lia-unicode-emoji" title=":crying_face:"&gt;😢&lt;/span&gt;&lt;span class="lia-unicode-emoji" title=":frowning_face:"&gt;☹️&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;anyone can solve this? I am a newbie in here! if you have any solution can share in here, pleasee&lt;/P&gt;&lt;P&gt;this command is T15&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="lisp"&gt;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" "")
                
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This perfectly comand by screenshot&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot_3.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/904153i608342ADAA918E95/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot_3.png" alt="Screenshot_3.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Apr 2021 04:33:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/creating-wall-with-hatching/m-p/10223883#M61697</guid>
      <dc:creator>rahmathide_legion</dc:creator>
      <dc:date>2021-04-09T04:33:48Z</dc:date>
    </item>
    <item>
      <title>Re: CREATING WALL WITH HATCHING</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/creating-wall-with-hatching/m-p/10223946#M61698</link>
      <description>&lt;P&gt;The hatch can vary a little when select object Last you need a no more to select so 2 "" "" so ends.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(command "hatch" "P" "ansi32" "10" "0.0" "s" "l" "" "")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ps this is walls and yes can be hatched.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="3dhouse2.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/904161i51FA6CD90C958E7E/image-size/large?v=v2&amp;amp;px=999" role="button" title="3dhouse2.png" alt="3dhouse2.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="3dhouse-render.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/904162iBC3BA37F7C65E388/image-size/large?v=v2&amp;amp;px=999" role="button" title="3dhouse-render.png" alt="3dhouse-render.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Apr 2021 05:20:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/creating-wall-with-hatching/m-p/10223946#M61698</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2021-04-09T05:20:50Z</dc:date>
    </item>
    <item>
      <title>Re: CREATING WALL WITH HATCHING</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/creating-wall-with-hatching/m-p/10223995#M61699</link>
      <description>&lt;P&gt;thank for the time for commenting this thread,&amp;nbsp;&lt;/P&gt;&lt;P&gt;i try this revision but need to zoom again while draw the get point.&amp;nbsp;&lt;/P&gt;&lt;P&gt;the revision is fix the snap mode no to all again, thanks&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Apr 2021 05:54:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/creating-wall-with-hatching/m-p/10223995#M61699</guid>
      <dc:creator>rahmathide_legion</dc:creator>
      <dc:date>2021-04-09T05:54:45Z</dc:date>
    </item>
    <item>
      <title>Re: CREATING WALL WITH HATCHING</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/creating-wall-with-hatching/m-p/10225007#M61700</link>
      <description>Really dumb question... Any reason you are not using AutoCADARCHITETURE that has these wall types features built-in?&lt;BR /&gt;It is free with a paid subscription of AutoCAD.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 09 Apr 2021 13:38:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/creating-wall-with-hatching/m-p/10225007#M61700</guid>
      <dc:creator>pendean</dc:creator>
      <dc:date>2021-04-09T13:38:38Z</dc:date>
    </item>
    <item>
      <title>Re: CREATING WALL WITH HATCHING</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/creating-wall-with-hatching/m-p/10225046#M61701</link>
      <description>autocad only bro, my lisp code is created before autocad architecture was release. so, ive work on 2d only. i try to developing in there.</description>
      <pubDate>Fri, 09 Apr 2021 13:50:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/creating-wall-with-hatching/m-p/10225046#M61701</guid>
      <dc:creator>rahmathide_legion</dc:creator>
      <dc:date>2021-04-09T13:50:16Z</dc:date>
    </item>
    <item>
      <title>Re: CREATING WALL WITH HATCHING</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/creating-wall-with-hatching/m-p/10228522#M61702</link>
      <description>&lt;P&gt;Hopefully this post says from seahaven forum is messed up.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The images were created using Cad-Arc a package developed prior to Architecture there is around 2 years of programming in it, roofs, walls, doors, elevations and so much more a wall can be 2 or 4 lines any sizes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you want further info private mail me a email address.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 11 Apr 2021 06:28:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/creating-wall-with-hatching/m-p/10228522#M61702</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-04-11T06:28:32Z</dc:date>
    </item>
  </channel>
</rss>

