<?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 Door/Window Sides Material in Libraries &amp; objects</title>
    <link>https://community.graphisoft.com/t5/Libraries-objects/Door-Window-Sides-Material/m-p/269584#M10306</link>
    <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;T&gt;I have a stone wall that I am putting in custom gdl doors &amp;amp; windows. The sides of the Wallhole are showing as stone, but I want them to be white. Is there a way to programmatically change this wallhole side material? Would this be the built-in variable "ac_wallholematerial"?&lt;BR /&gt;
&lt;BR /&gt;
Thanks in advance for any help.&lt;/T&gt;&lt;/DIV&gt;</description>
    <pubDate>Wed, 24 May 2023 10:32:04 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2023-05-24T10:32:04Z</dc:date>
    <item>
      <title>Door/Window Sides Material</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Door-Window-Sides-Material/m-p/269584#M10306</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;T&gt;I have a stone wall that I am putting in custom gdl doors &amp;amp; windows. The sides of the Wallhole are showing as stone, but I want them to be white. Is there a way to programmatically change this wallhole side material? Would this be the built-in variable "ac_wallholematerial"?&lt;BR /&gt;
&lt;BR /&gt;
Thanks in advance for any help.&lt;/T&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 24 May 2023 10:32:04 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Door-Window-Sides-Material/m-p/269584#M10306</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-05-24T10:32:04Z</dc:date>
    </item>
    <item>
      <title>Re: Door/Window Sides Material</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Door-Window-Sides-Material/m-p/269585#M10307</link>
      <description>Hi,&lt;BR /&gt;
you can always code your door or windows with some prisms of the white material near the frame.&lt;BR /&gt;
One problem is it will be seen in lists.&lt;BR /&gt;
Hope it helps</description>
      <pubDate>Wed, 13 May 2015 19:51:25 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Door-Window-Sides-Material/m-p/269585#M10307</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-13T19:51:25Z</dc:date>
    </item>
    <item>
      <title>Re: Door/Window Sides Material</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Door-Window-Sides-Material/m-p/269586#M10308</link>
      <description>Make sure your WALLHOLE command uses the status code of "2".&lt;BR /&gt;
Then you can set any material you want before the wall hole.&lt;BR /&gt;
&lt;BR /&gt;
i.e.&lt;BR /&gt;

&lt;PRE&gt;material side_mat
WALLHOLE 4,2,
	-(a*0.5),0,15,
	(a*0.5),0,15,
	(a*0.5),b,15,
	(-a*0.5),b,15
&lt;/PRE&gt;

For a wall that has different materials on the inside and outside you can match those on the side return by using 2 WALLNICHE commands instead of one WALLHOLE.&lt;BR /&gt;
Set the material to the same as that for the inside and outside wall face.&lt;BR /&gt;
&lt;BR /&gt;
i.e.&lt;BR /&gt;

&lt;PRE&gt;extend_niche = 0.1          !! this just ensures the niche extends outside the wall

m1=1	!!the polygon will create a visible edge upon entry into the body being cut
m2=1	!!depth - the lengthwise edge of the cutting form will be visible
m3=1	!!the polygon will create a visible edge upon exiting the body being cut
m4=0	!!outside - the bottom edge of the cutting form will be visible
m5=0	!!inside - the top edge of the cutting form will be visible
m7=0	!!controls the viewpoint dependent visibility of the lengthwise edge


MATERIAL WALL_MAT_B
WALLNICHE 4, 1, 1*0 + 2*1 + 8*0 + 16*0 + 32*0 + 64*0 + 128*0,
0, 0, 1, -K_-extend_niche,
	-(a*0.5),0,1*m1 + 2*m2 + 4*m3 + 8*m4 + 16*m5 + 64*m7,
	(a*0.5),0,1*m1 + 2*m2 + 4*m3 + 8*m4 + 16*m5 + 64*m7,
	(a*0.5),b,1*m1 + 2*m2 + 4*m3 + 8*m4 + 16*m5 + 64*m7,
	(-a*0.5),b,1*m1 + 2*m2 + 4*m3 + 8*m4 + 16*m5 + 64*m7


MATERIAL WALL_MAT_A
WALLNICHE 4, 1, 1*0 + 2*1 + 8*0 + 16*0 + 32*0 + 64*0 + 128*0,
0, 0, 1, C_-K_+extend_niche,
	-(a*0.5),0,1*m1 + 2*m2 + 4*m3 + 8*m4 + 16*m5 + 64*m7,
	(a*0.5),0,1*m1 + 2*m2 + 4*m3 + 8*m4 + 16*m5 + 64*m7,
	(a*0.5,b,1*m1 + 2*m2 + 4*m3 + 8*m4 + 16*m5 + 64*m7,
	(-a*0.5,b,1*m1 + 2*m2 + 4*m3 + 8*m4 + 16*m5 + 64*m7
&lt;/PRE&gt;

&lt;BR /&gt;
Barry.</description>
      <pubDate>Thu, 14 May 2015 01:58:25 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Door-Window-Sides-Material/m-p/269586#M10308</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2015-05-14T01:58:25Z</dc:date>
    </item>
    <item>
      <title>Re: Door/Window Sides Material</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Door-Window-Sides-Material/m-p/269587#M10309</link>
      <description>Thank you to both of you for responding.</description>
      <pubDate>Tue, 26 May 2015 19:57:37 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Door-Window-Sides-Material/m-p/269587#M10309</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-26T19:57:37Z</dc:date>
    </item>
  </channel>
</rss>

