<?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 Re: Plane with Dashed line as border in 3D in Libraries &amp; objects</title>
    <link>https://community.graphisoft.com/t5/Libraries-objects/Plane-with-Dashed-line-as-border-in-3D/m-p/189070#M19928</link>
    <description>In fact that code draws 4 lines of a cube so you actually only need just one line in the for/next loop.&lt;BR /&gt;
&lt;BR /&gt;
if fra(a/&lt;FONT color="#00ff12"&gt;0.15&lt;/FONT&gt;)&amp;lt;&amp;gt;0 then &lt;BR /&gt;
      No_Dsh=No_Dsh+1 &lt;BR /&gt;
endif &lt;BR /&gt;
addz &lt;FONT color="#0000ff"&gt;0.05&lt;/FONT&gt; &lt;BR /&gt;
addx -a*0.5 &lt;BR /&gt;
for Cnt=1 to No_Dsh &lt;BR /&gt;
lin_ 0,0,0,&lt;FONT color="#ff0012"&gt;0.1&lt;/FONT&gt;,0,0 &lt;BR /&gt;
addx (a+&lt;FONT color="#0000ff"&gt;0.05&lt;/FONT&gt;)/No_Dsh &lt;BR /&gt;
next Cnt &lt;BR /&gt;
del No_Dsh &lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;FONT color="#0000ff"&gt;0.05 &lt;/FONT&gt;is the gap and &lt;FONT color="#ff0012"&gt;0.1&lt;/FONT&gt; is the line length.&lt;BR /&gt;
&lt;FONT color="#00ff12"&gt;0.15 &lt;/FONT&gt;is the length of the gap and the line together.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
To do the entire cube try this.&lt;BR /&gt;
&lt;BR /&gt;
No_Dsh=int(a/0.15)&lt;BR /&gt;
if fra(a/0.15)&amp;lt;&amp;gt;0 then&lt;BR /&gt;
	No_Dsh=No_Dsh+1&lt;BR /&gt;
endif&lt;BR /&gt;
addz 0.05&lt;BR /&gt;
addx -a*0.5&lt;BR /&gt;
for Cnt=1 to No_Dsh&lt;BR /&gt;
lin_ 0,0,0,0.1,0,0&lt;BR /&gt;
lin_ 0,-b,0,0.1,-b,0&lt;BR /&gt;
lin_ 0,0,zzyzx,0.1,0,zzyzx&lt;BR /&gt;
lin_ 0,-b,zzyzx,0.1,-b,zzyzx&lt;BR /&gt;
addx (a+0.05)/No_Dsh&lt;BR /&gt;
next Cnt&lt;BR /&gt;
del No_Dsh&lt;BR /&gt;
&lt;BR /&gt;
No_Dsh=int(b/0.15)&lt;BR /&gt;
if fra(b/0.15)&amp;lt;&amp;gt;0 then&lt;BR /&gt;
	No_Dsh=No_Dsh+1&lt;BR /&gt;
endif&lt;BR /&gt;
for Cnt=1 to No_Dsh&lt;BR /&gt;
lin_ 0,0,0,0,-0.1,0&lt;BR /&gt;
lin_ a,0,0,a,-0.1,0&lt;BR /&gt;
lin_ 0,0,zzyzx,0,-0.1,zzyzx&lt;BR /&gt;
lin_ a,0,zzyzx,a,-0.1,zzyzx&lt;BR /&gt;
addy -(b+0.025)/No_Dsh&lt;BR /&gt;
next Cnt&lt;BR /&gt;
del No_Dsh&lt;BR /&gt;
&lt;BR /&gt;
No_Dsh=int(zzyzx/0.15)&lt;BR /&gt;
if fra(zzyzx/0.15)&amp;lt;&amp;gt;0 then&lt;BR /&gt;
	No_Dsh=No_Dsh+1&lt;BR /&gt;
endif&lt;BR /&gt;
for Cnt=1 to No_Dsh&lt;BR /&gt;
lin_ 0,0,0,0,0,0.1&lt;BR /&gt;
lin_ 0,-b,0,0,-b,0.1&lt;BR /&gt;
lin_ a,0,0,a,0,0.1&lt;BR /&gt;
lin_ a,-b,0,a,-b,0.1&lt;BR /&gt;
addz (zzyzx+0.025)/No_Dsh&lt;BR /&gt;
next Cnt&lt;BR /&gt;
del No_Dsh+2</description>
    <pubDate>Thu, 12 Aug 2010 02:31:17 GMT</pubDate>
    <dc:creator>Barry Kelly</dc:creator>
    <dc:date>2010-08-12T02:31:17Z</dc:date>
    <item>
      <title>Plane with Dashed line as border in 3D</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Plane-with-Dashed-line-as-border-in-3D/m-p/189068#M19926</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;T&gt;Hi,&lt;BR /&gt;
&lt;BR /&gt;
We need to show a slab, mesh, fill or zone borders with dashed line in 3D if we are looking from the top.&lt;BR /&gt;
&lt;BR /&gt;
I created an object which 3D script is&lt;BR /&gt;
&lt;BR /&gt;
pen 10&lt;BR /&gt;
material “yellow colour”&lt;BR /&gt;
set line_type “Dashed”&lt;BR /&gt;
&lt;BR /&gt;
prism_ 5, 0.001,&lt;BR /&gt;
	0, 0, 0,&lt;BR /&gt;
	0, 1, 0,&lt;BR /&gt;
	2, 1, 0,&lt;BR /&gt;
	2, 0, 0,&lt;BR /&gt;
	0, 0, -1&lt;BR /&gt;
&lt;BR /&gt;
lin_ 0,0,0, 0,1,0&lt;BR /&gt;
lin_ 0,1,0, 2,1,0&lt;BR /&gt;
lin_ 2,1,0, 2,0,0&lt;BR /&gt;
lin_ 2,0,0, 0,0,0&lt;BR /&gt;
&lt;BR /&gt;
In 3D I am not getting dashed line I am only getting solid line.&lt;BR /&gt;
&lt;BR /&gt;
Is any one had any idea how to get the dashed plane in 3d?&lt;BR /&gt;
&lt;BR /&gt;
Is there any object available as “3Ddashedline”?&lt;/T&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;IMG src="http://community.graphisoft.com/t5/image/serverpage/image-id/67407iCEAC6CD30BADDC28/image-size/large?v=v2&amp;amp;px=999" border="0" alt="plane.JPG" title="plane.JPG" /&gt;</description>
      <pubDate>Thu, 12 Aug 2010 01:56:33 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Plane-with-Dashed-line-as-border-in-3D/m-p/189068#M19926</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-08-12T01:56:33Z</dc:date>
    </item>
    <item>
      <title>Re: Plane with Dashed line as border in 3D</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Plane-with-Dashed-line-as-border-in-3D/m-p/189069#M19927</link>
      <description>There is no such thing as a dashed line in 3D unfortunately.&lt;BR /&gt;
So you have to make one yourself by drawing a whole series of short lines with gaps in between.&lt;BR /&gt;
&lt;BR /&gt;
The code you need will be something like this for each one of you edges.&lt;BR /&gt;
&lt;BR /&gt;
&lt;FONT color="#ff0000"&gt;if fra(a/0.15)&amp;lt;&amp;gt;0 then&lt;BR /&gt;
	No_Dsh=No_Dsh+1&lt;BR /&gt;
endif&lt;BR /&gt;
addz 0.05&lt;BR /&gt;
addx -a*0.5&lt;BR /&gt;
for Cnt=1 to No_Dsh&lt;BR /&gt;
lin_ 0,0,0,0.1,0,0&lt;BR /&gt;
lin_ 0,-b,0,0.1,-b,0&lt;BR /&gt;
lin_ 0,0,zzyzx,0.1,0,zzyzx&lt;BR /&gt;
lin_ 0,-b,zzyzx,0.1,-b,zzyzx&lt;BR /&gt;
addx (a+0.05)/No_Dsh&lt;BR /&gt;
next Cnt&lt;BR /&gt;
del No_Dsh&lt;/FONT&gt;&lt;BR /&gt;
&lt;BR /&gt;
You will need to adjust the "a", 'b" and "zzyzx" parameters to suit the size and direction you want the line to travel.&lt;BR /&gt;
&lt;BR /&gt;
Barry.</description>
      <pubDate>Thu, 12 Aug 2010 02:22:13 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Plane-with-Dashed-line-as-border-in-3D/m-p/189069#M19927</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2010-08-12T02:22:13Z</dc:date>
    </item>
    <item>
      <title>Re: Plane with Dashed line as border in 3D</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Plane-with-Dashed-line-as-border-in-3D/m-p/189070#M19928</link>
      <description>In fact that code draws 4 lines of a cube so you actually only need just one line in the for/next loop.&lt;BR /&gt;
&lt;BR /&gt;
if fra(a/&lt;FONT color="#00ff12"&gt;0.15&lt;/FONT&gt;)&amp;lt;&amp;gt;0 then &lt;BR /&gt;
      No_Dsh=No_Dsh+1 &lt;BR /&gt;
endif &lt;BR /&gt;
addz &lt;FONT color="#0000ff"&gt;0.05&lt;/FONT&gt; &lt;BR /&gt;
addx -a*0.5 &lt;BR /&gt;
for Cnt=1 to No_Dsh &lt;BR /&gt;
lin_ 0,0,0,&lt;FONT color="#ff0012"&gt;0.1&lt;/FONT&gt;,0,0 &lt;BR /&gt;
addx (a+&lt;FONT color="#0000ff"&gt;0.05&lt;/FONT&gt;)/No_Dsh &lt;BR /&gt;
next Cnt &lt;BR /&gt;
del No_Dsh &lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;FONT color="#0000ff"&gt;0.05 &lt;/FONT&gt;is the gap and &lt;FONT color="#ff0012"&gt;0.1&lt;/FONT&gt; is the line length.&lt;BR /&gt;
&lt;FONT color="#00ff12"&gt;0.15 &lt;/FONT&gt;is the length of the gap and the line together.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
To do the entire cube try this.&lt;BR /&gt;
&lt;BR /&gt;
No_Dsh=int(a/0.15)&lt;BR /&gt;
if fra(a/0.15)&amp;lt;&amp;gt;0 then&lt;BR /&gt;
	No_Dsh=No_Dsh+1&lt;BR /&gt;
endif&lt;BR /&gt;
addz 0.05&lt;BR /&gt;
addx -a*0.5&lt;BR /&gt;
for Cnt=1 to No_Dsh&lt;BR /&gt;
lin_ 0,0,0,0.1,0,0&lt;BR /&gt;
lin_ 0,-b,0,0.1,-b,0&lt;BR /&gt;
lin_ 0,0,zzyzx,0.1,0,zzyzx&lt;BR /&gt;
lin_ 0,-b,zzyzx,0.1,-b,zzyzx&lt;BR /&gt;
addx (a+0.05)/No_Dsh&lt;BR /&gt;
next Cnt&lt;BR /&gt;
del No_Dsh&lt;BR /&gt;
&lt;BR /&gt;
No_Dsh=int(b/0.15)&lt;BR /&gt;
if fra(b/0.15)&amp;lt;&amp;gt;0 then&lt;BR /&gt;
	No_Dsh=No_Dsh+1&lt;BR /&gt;
endif&lt;BR /&gt;
for Cnt=1 to No_Dsh&lt;BR /&gt;
lin_ 0,0,0,0,-0.1,0&lt;BR /&gt;
lin_ a,0,0,a,-0.1,0&lt;BR /&gt;
lin_ 0,0,zzyzx,0,-0.1,zzyzx&lt;BR /&gt;
lin_ a,0,zzyzx,a,-0.1,zzyzx&lt;BR /&gt;
addy -(b+0.025)/No_Dsh&lt;BR /&gt;
next Cnt&lt;BR /&gt;
del No_Dsh&lt;BR /&gt;
&lt;BR /&gt;
No_Dsh=int(zzyzx/0.15)&lt;BR /&gt;
if fra(zzyzx/0.15)&amp;lt;&amp;gt;0 then&lt;BR /&gt;
	No_Dsh=No_Dsh+1&lt;BR /&gt;
endif&lt;BR /&gt;
for Cnt=1 to No_Dsh&lt;BR /&gt;
lin_ 0,0,0,0,0,0.1&lt;BR /&gt;
lin_ 0,-b,0,0,-b,0.1&lt;BR /&gt;
lin_ a,0,0,a,0,0.1&lt;BR /&gt;
lin_ a,-b,0,a,-b,0.1&lt;BR /&gt;
addz (zzyzx+0.025)/No_Dsh&lt;BR /&gt;
next Cnt&lt;BR /&gt;
del No_Dsh+2</description>
      <pubDate>Thu, 12 Aug 2010 02:31:17 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Plane-with-Dashed-line-as-border-in-3D/m-p/189070#M19928</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2010-08-12T02:31:17Z</dc:date>
    </item>
    <item>
      <title>Re: Plane with Dashed line as border in 3D</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Plane-with-Dashed-line-as-border-in-3D/m-p/355075#M19929</link>
      <description>&lt;P&gt;Are you still unable to use LineType in 3D?&lt;/P&gt;</description>
      <pubDate>Sun, 04 Sep 2022 15:25:35 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Plane-with-Dashed-line-as-border-in-3D/m-p/355075#M19929</guid>
      <dc:creator>LeeJaeYoung</dc:creator>
      <dc:date>2022-09-04T15:25:35Z</dc:date>
    </item>
    <item>
      <title>Re: Plane with Dashed line as border in 3D</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Plane-with-Dashed-line-as-border-in-3D/m-p/355086#M19930</link>
      <description>&lt;P&gt;No, there is no line type in 3D.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Barry.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Sep 2022 00:24:22 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Plane-with-Dashed-line-as-border-in-3D/m-p/355086#M19930</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2022-09-05T00:24:22Z</dc:date>
    </item>
    <item>
      <title>Re: Plane with Dashed line as border in 3D</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Plane-with-Dashed-line-as-border-in-3D/m-p/355087#M19931</link>
      <description>&lt;P&gt;GDL LIN_ cannot be used as a hidden type in section or elevation.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Sep 2022 02:38:22 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Plane-with-Dashed-line-as-border-in-3D/m-p/355087#M19931</guid>
      <dc:creator>LeeJaeYoung</dc:creator>
      <dc:date>2022-09-05T02:38:22Z</dc:date>
    </item>
    <item>
      <title>Re: Plane with Dashed line as border in 3D</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Plane-with-Dashed-line-as-border-in-3D/m-p/355089#M19932</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.graphisoft.com/t5/user/viewprofilepage/user-id/11600"&gt;@LeeJaeYoung&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;GDL LIN_ cannot be used as a hidden type in section or elevation.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I am a bit confused.&lt;/P&gt;
&lt;P&gt;Is this a statement? (yes, it is true there is no hidden line type in 3D).&lt;/P&gt;
&lt;P&gt;Or are you asking a further question.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;LIN_ in 3D is solid and that is it.&lt;/P&gt;
&lt;P&gt;PRISM &amp;amp; POLY etc., will have masking codes to turn edges on/off.&lt;/P&gt;
&lt;P&gt;But they are on (= solid) or off completely (= not there).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Barry.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Sep 2022 03:26:19 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Plane-with-Dashed-line-as-border-in-3D/m-p/355089#M19932</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2022-09-05T03:26:19Z</dc:date>
    </item>
    <item>
      <title>Re: Plane with Dashed line as border in 3D</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Plane-with-Dashed-line-as-border-in-3D/m-p/355090#M19933</link>
      <description>&lt;P&gt;Not sure if this helps in your case – 3D document with graphic override.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2022-09-05 at 00.24.17.png" style="width: 400px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/29542i6EDB0F656A2C9A65/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screen Shot 2022-09-05 at 00.24.17.png" alt="Screen Shot 2022-09-05 at 00.24.17.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Sep 2022 03:27:34 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Plane-with-Dashed-line-as-border-in-3D/m-p/355090#M19933</guid>
      <dc:creator>Ignacio Azpiazu</dc:creator>
      <dc:date>2022-09-05T03:27:34Z</dc:date>
    </item>
    <item>
      <title>Re: Plane with Dashed line as border in 3D</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Plane-with-Dashed-line-as-border-in-3D/m-p/355092#M19934</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="LeeJaeYoung_0-1662348738987.png" style="width: 400px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/29543i88F39D356EFB8A86/image-size/medium?v=v2&amp;amp;px=400" role="button" title="LeeJaeYoung_0-1662348738987.png" alt="LeeJaeYoung_0-1662348738987.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I am trying to express the hidden railing like a CAD drawing.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Sep 2022 04:00:31 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Plane-with-Dashed-line-as-border-in-3D/m-p/355092#M19934</guid>
      <dc:creator>LeeJaeYoung</dc:creator>
      <dc:date>2022-09-05T04:00:31Z</dc:date>
    </item>
    <item>
      <title>Re: Plane with Dashed line as border in 3D</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Plane-with-Dashed-line-as-border-in-3D/m-p/355093#M19935</link>
      <description>&lt;P&gt;Archicad does not have the ability to show hidden elements with a hidden (dashed) line type in sections, elevations or 3D.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can draw a dashed line in section/elevation or you can overlay a white dashed line to make a solid line below appear dashed.&lt;/P&gt;
&lt;P&gt;You can also use a lined hatch with thick white hatch lines to mask what is behind it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or as Ignacio has suggested, you can create a 3D Document of a 3D view and then you can alter the lines types (as they are now 2D lines).&lt;/P&gt;
&lt;P&gt;There is also an option to 'show hidden edges' in a 3D document and you can set the line style.&lt;/P&gt;
&lt;P&gt;But is will show ALL hidden edges of hidden elements - you can't pick and choose.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Besides that, it looks to me that you aren't wanting to show actual hidden elements (i.e. an element hidden behind another element).&lt;/P&gt;
&lt;P&gt;You just want to show certain elements as dashed in your section/elevation.&lt;/P&gt;
&lt;P&gt;You can't do this without drawing or overlaying dashed lines yourself manually.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Even if you could set an element as dashed in a section, it would then appear dashed in all other sections, elevations and 3D views.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, with railings, there are MVO options for full, simplified or symbolic appearance.&lt;/P&gt;
&lt;P&gt;The latter 2 you can set the line type to a dashed line.&lt;/P&gt;
&lt;P&gt;So if it is just railings you are looking at, yes it can be done in MVO options - which you can set different MVO scheme for each view - so some can be dashed and some can be solid.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Barry.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Sep 2022 04:41:39 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Plane-with-Dashed-line-as-border-in-3D/m-p/355093#M19935</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2022-09-05T04:41:39Z</dc:date>
    </item>
    <item>
      <title>Re: Plane with Dashed line as border in 3D</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Plane-with-Dashed-line-as-border-in-3D/m-p/355105#M19936</link>
      <description>&lt;P&gt;yes thank you very much&lt;BR /&gt;I'll do some more research and ask about the GDL.&lt;BR /&gt;It seems that there are many difficulties in trying to understand gdl while studying alone.&lt;/P&gt;&lt;P&gt;Your advice is guiding my future.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Sep 2022 07:25:08 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Plane-with-Dashed-line-as-border-in-3D/m-p/355105#M19936</guid>
      <dc:creator>LeeJaeYoung</dc:creator>
      <dc:date>2022-09-05T07:25:08Z</dc:date>
    </item>
  </channel>
</rss>

