<?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: Curtain Wall - Geometry and Posisioning in Archicad C++ API</title>
    <link>https://community.graphisoft.com/t5/Archicad-C-API/Curtain-Wall-Geometry-and-Posisioning/m-p/280654#M4815</link>
    <description>Sorry if you misunderstood what my original post was, Xylios. But I said that those variable &lt;B&gt;could be&lt;/B&gt; the values that I am looking for. But to answer your question, based on the documentation of ACAPI_Element_Change, curtain wall is not editable (v17 &amp;amp; v18, not sure about other versions).</description>
    <pubDate>Mon, 13 Jul 2015 03:54:46 GMT</pubDate>
    <dc:creator>ReignBough</dc:creator>
    <dc:date>2015-07-13T03:54:46Z</dc:date>
    <item>
      <title>Curtain Wall - Geometry and Posisioning</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Curtain-Wall-Geometry-and-Posisioning/m-p/280651#M4812</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;I am looking for a way to get the following information about the curtain wall:&lt;BR /&gt;&lt;BR /&gt;- Curtain Wall Height&lt;BR /&gt;- Bottom Offset to Home Story&lt;BR /&gt;- Nominal Thickness&lt;BR /&gt;- Slant Angle&lt;BR /&gt;- Reference Line Offset&lt;BR /&gt;&lt;BR /&gt;Based on the documentation, the following could be the values that I am looking for, respectively:&lt;BR /&gt;&lt;BR /&gt;- height *&lt;BR /&gt;- storyRelLevel (&lt;STRONG&gt;EDIT:&lt;/STRONG&gt; this is actually found on planeMatrix but you need some more calculations)&lt;BR /&gt;- nominalWidth&lt;BR /&gt;- angle *&lt;BR /&gt;- planeOffset&lt;BR /&gt;&lt;BR /&gt;* Based on the documentation, these two are for &lt;I&gt;&lt;/I&gt;&lt;S&gt;&lt;I&gt;&lt;I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/S&gt;input only.&lt;BR /&gt;&lt;BR /&gt;Only nominalWidth has value and everything else is 0.0.&lt;BR /&gt;&lt;BR /&gt;Where and how can I get these other values?&lt;/DIV&gt;
&lt;P&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="curtainwall.png" style="width: 680px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/12272i26D5B53D2B976CAB/image-size/large?v=v2&amp;amp;px=999" role="button" title="curtainwall.png" alt="curtainwall.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jul 2023 14:23:21 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Curtain-Wall-Geometry-and-Posisioning/m-p/280651#M4812</guid>
      <dc:creator>ReignBough</dc:creator>
      <dc:date>2023-07-13T14:23:21Z</dc:date>
    </item>
    <item>
      <title>Re: Curtain Wall - Geometry and Posisioning</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Curtain-Wall-Geometry-and-Posisioning/m-p/280652#M4813</link>
      <description>I temporarily use the following codes to get the height and storyRelLevel:&lt;BR /&gt;

&lt;PRE&gt;API_Box3D extent;
ACAPI_Database(APIDb_CalcBoundsID, &amp;amp;cwall.head, &amp;amp;extent);
double cwHt = extent.zMax - extent.zMin;
API_StoryType story;
GetStoryType(cwall.head.floorInd, &amp;amp;story);
double cwLv = extent.zMin - story.level;&lt;/PRE&gt;

*GetStoryType() function returns API_StoryType of a given floor index.</description>
      <pubDate>Tue, 07 Jul 2015 09:59:14 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Curtain-Wall-Geometry-and-Posisioning/m-p/280652#M4813</guid>
      <dc:creator>ReignBough</dc:creator>
      <dc:date>2015-07-07T09:59:14Z</dc:date>
    </item>
    <item>
      <title>Re: Curtain Wall - Geometry and Posisioning</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Curtain-Wall-Geometry-and-Posisioning/m-p/280653#M4814</link>
      <description>Hey there, I also have been exploring some of the attributes of the curtain wall that the API provides. I was trying to figure out how to manipulate the "Bottom Offset to Home Story". &lt;BR /&gt;
&lt;BR /&gt;
You say that it is the storyRelLevel, however whatever the value I write there there is no change in the Curtain Wall created by the addon.&lt;BR /&gt;
&lt;BR /&gt;
Other strange behavior of the curtain wall is that whenever I create it at a story different from the story 0, it automatically changes the value of "Bottom Offset to Home Story" so that it remains physically on story 0.&lt;BR /&gt;
&lt;BR /&gt;
Do you have any idea of how to fix this?</description>
      <pubDate>Wed, 08 Jul 2015 12:51:02 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Curtain-Wall-Geometry-and-Posisioning/m-p/280653#M4814</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-07-08T12:51:02Z</dc:date>
    </item>
    <item>
      <title>Re: Curtain Wall - Geometry and Posisioning</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Curtain-Wall-Geometry-and-Posisioning/m-p/280654#M4815</link>
      <description>Sorry if you misunderstood what my original post was, Xylios. But I said that those variable &lt;B&gt;could be&lt;/B&gt; the values that I am looking for. But to answer your question, based on the documentation of ACAPI_Element_Change, curtain wall is not editable (v17 &amp;amp; v18, not sure about other versions).</description>
      <pubDate>Mon, 13 Jul 2015 03:54:46 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Curtain-Wall-Geometry-and-Posisioning/m-p/280654#M4815</guid>
      <dc:creator>ReignBough</dc:creator>
      <dc:date>2015-07-13T03:54:46Z</dc:date>
    </item>
    <item>
      <title>Re: Curtain Wall - Geometry and Posisioning</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Curtain-Wall-Geometry-and-Posisioning/m-p/280655#M4816</link>
      <description>Hey, thank you for replying and sorry for the misunderstanding. =]</description>
      <pubDate>Mon, 13 Jul 2015 11:00:41 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Curtain-Wall-Geometry-and-Posisioning/m-p/280655#M4816</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-07-13T11:00:41Z</dc:date>
    </item>
  </channel>
</rss>

