<?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 PRISM_ STATUS CODES: EDGE NOT SHOWING ON CYLINDER-LIKE PRISM in Libraries &amp; objects</title>
    <link>https://community.graphisoft.com/t5/Libraries-objects/PRISM-STATUS-CODES-EDGE-NOT-SHOWING-ON-CYLINDER-LIKE-PRISM/m-p/253456#M2159</link>
    <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;R&gt;Hello,&lt;BR /&gt;
&lt;BR /&gt;
I am creating a simple spout object and I have set the status code to make the bottom edge visible and side surface present. This works great in 3D, however in 2D the outlines of the Prism_ are not showing. I have had a look at Barry Kelly's code for his simple spout and I can't quite work out how he has managed to show the side outer edges in 2D &amp;amp; 3D.&lt;BR /&gt;
&lt;BR /&gt;
Cheers in advance!&lt;BR /&gt;
&lt;BR /&gt;
my code is as follows:&lt;BR /&gt;
&lt;BR /&gt;
		PRISM_ 2, spoutLength-(elbowLength+wallPlateLength),&lt;BR /&gt;
		0, 0, 909,&lt;BR /&gt;
		spoutDiameter/2, 360, 4011&lt;BR /&gt;



&lt;/R&gt;&lt;/DIV&gt;</description>
    <pubDate>Sun, 08 Sep 2019 10:28:22 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-09-08T10:28:22Z</dc:date>
    <item>
      <title>PRISM_ STATUS CODES: EDGE NOT SHOWING ON CYLINDER-LIKE PRISM</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/PRISM-STATUS-CODES-EDGE-NOT-SHOWING-ON-CYLINDER-LIKE-PRISM/m-p/253456#M2159</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;R&gt;Hello,&lt;BR /&gt;
&lt;BR /&gt;
I am creating a simple spout object and I have set the status code to make the bottom edge visible and side surface present. This works great in 3D, however in 2D the outlines of the Prism_ are not showing. I have had a look at Barry Kelly's code for his simple spout and I can't quite work out how he has managed to show the side outer edges in 2D &amp;amp; 3D.&lt;BR /&gt;
&lt;BR /&gt;
Cheers in advance!&lt;BR /&gt;
&lt;BR /&gt;
my code is as follows:&lt;BR /&gt;
&lt;BR /&gt;
		PRISM_ 2, spoutLength-(elbowLength+wallPlateLength),&lt;BR /&gt;
		0, 0, 909,&lt;BR /&gt;
		spoutDiameter/2, 360, 4011&lt;BR /&gt;



&lt;/R&gt;&lt;/DIV&gt;</description>
      <pubDate>Sun, 08 Sep 2019 10:28:22 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/PRISM-STATUS-CODES-EDGE-NOT-SHOWING-ON-CYLINDER-LIKE-PRISM/m-p/253456#M2159</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-09-08T10:28:22Z</dc:date>
    </item>
    <item>
      <title>Re: PRISM_ STATUS CODES: EDGE NOT SHOWING ON CYLINDER-LIKE PRISM</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/PRISM-STATUS-CODES-EDGE-NOT-SHOWING-ON-CYLINDER-LIKE-PRISM/m-p/253457#M2160</link>
      <description>Instead of making the prism with one centre point and a 360° arc, start with a side node, then the centre, then a 180° arc.&lt;BR /&gt;
This will give half the cylinder.&lt;BR /&gt;
Complete with the other half (same but negative distance).&lt;BR /&gt;
I always like to finish back at the starting point - so 7 instructions in all.&lt;BR /&gt;
&lt;BR /&gt;
By staring on an edge you will have better control with the masking codes.&lt;BR /&gt;
15 will show all edges including the vertical edges - this is important for the +64 mask.&lt;BR /&gt;
-4 will hide the top edge.&lt;BR /&gt;
+64 will give a view dependent edge on the curved (they are not really curves but a series of flat segments) so it will always appear if there is and edge as you rotate the prism.&lt;BR /&gt;
&lt;BR /&gt;
There will be other ways to do this as well.&lt;BR /&gt;
&lt;BR /&gt;

&lt;PRE&gt;PRISM_ 7, spoutLength-(elbowLength+wallPlateLength),
spoutDiameter/2, 0, 15-4+64,
0, 0, 900,
0, 180, 4000,
-spoutDiameter/2, 0, 15-4+64,
0, 0, 900,
0, 180, 4000,
spoutDiameter/2, 0, -1&lt;/PRE&gt;

&lt;BR /&gt;
Barry.</description>
      <pubDate>Sun, 08 Sep 2019 15:08:29 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/PRISM-STATUS-CODES-EDGE-NOT-SHOWING-ON-CYLINDER-LIKE-PRISM/m-p/253457#M2160</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2019-09-08T15:08:29Z</dc:date>
    </item>
    <item>
      <title>Re: PRISM_ STATUS CODES: EDGE NOT SHOWING ON CYLINDER-LIKE PRISM</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/PRISM-STATUS-CODES-EDGE-NOT-SHOWING-ON-CYLINDER-LIKE-PRISM/m-p/253458#M2161</link>
      <description>I understand now, thanks for breaking that down for me Barry. This will be a very useful trick when creating future objects. &lt;BR /&gt;
&lt;BR /&gt;
Cheers,&lt;BR /&gt;
&lt;BR /&gt;
Jarrod</description>
      <pubDate>Mon, 09 Sep 2019 03:40:00 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/PRISM-STATUS-CODES-EDGE-NOT-SHOWING-ON-CYLINDER-LIKE-PRISM/m-p/253458#M2161</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-09-09T03:40:00Z</dc:date>
    </item>
  </channel>
</rss>

