<?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: SECT_FILL command in AC 8 in Libraries &amp; objects</title>
    <link>https://community.graphisoft.com/t5/Libraries-objects/SECT-FILL-command-in-AC-8/m-p/60174#M40428</link>
    <description>Bill,&lt;BR /&gt;
Thank you for alerting us to the placement of SECT_FILL commands issue&lt;BR /&gt;
in solid geometry command sequences.&lt;BR /&gt;
It would have taken me a while to have figured that one out.&lt;BR /&gt;
Regards,&lt;BR /&gt;
Peter</description>
    <pubDate>Mon, 23 Aug 2004 23:43:50 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2004-08-23T23:43:50Z</dc:date>
    <item>
      <title>SECT_FILL command in AC 8</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/SECT-FILL-command-in-AC-8/m-p/60169#M40423</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;T&gt;Hello,&lt;BR /&gt;
Some info about the behavior of the SECT_FILL command in AC 8.&lt;BR /&gt;
I recently reported an apparent bug in the way the section/elevation&lt;BR /&gt;
tool was showing the cut lines in section. It was showing the default&lt;BR /&gt;
cut pen even though the "use objects attributes" button was ON and&lt;BR /&gt;
the object it was cutting had a SECT_FILL command in it's script.&lt;BR /&gt;
&lt;BR /&gt;
GS posted back the following:&lt;BR /&gt;
"The SECT_FILL works improperly, it has no effect on those bodies which&lt;BR /&gt;
are after the macro calls.&lt;BR /&gt;
I entered this as a bug into the AC Errors database."&lt;BR /&gt;
&lt;BR /&gt;
Therefore if you have any bodies after a macro call you&lt;BR /&gt;
need to issue another SECT_FILL command after the macro call(s).&lt;BR /&gt;
Thank you,&lt;BR /&gt;
Peter Devlin&lt;/T&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 26 May 2004 19:11:54 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/SECT-FILL-command-in-AC-8/m-p/60169#M40423</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2004-05-26T19:11:54Z</dc:date>
    </item>
    <item>
      <title>Re: SECT_FILL command in AC 8</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/SECT-FILL-command-in-AC-8/m-p/60170#M40424</link>
      <description>Hmmm...&lt;BR /&gt;
&lt;BR /&gt;
SECT_FILL does not appear to work with solid operations either... everything is the same default fill despite the SECT_FILL command.&lt;BR /&gt;
&lt;BR /&gt;
Has anyone found a work-around?&lt;BR /&gt;
&lt;BR /&gt;
regards</description>
      <pubDate>Mon, 23 Aug 2004 05:21:58 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/SECT-FILL-command-in-AC-8/m-p/60170#M40424</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2004-08-23T05:21:58Z</dc:date>
    </item>
    <item>
      <title>Re: SECT_FILL command in AC 8</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/SECT-FILL-command-in-AC-8/m-p/60171#M40425</link>
      <description>Bill,&lt;BR /&gt;
I just made a very simple GDL object that uses &lt;BR /&gt;
one solid geometry command.&lt;BR /&gt;
I viewed it in Section/Elevation and it displayed the default &lt;BR /&gt;
section pens and fill.&lt;BR /&gt;
&lt;BR /&gt;
I then put a SECT_FILL command at the beginning of the script and it&lt;BR /&gt;
appears to obey the command correctly in Section/Elevation.&lt;BR /&gt;
&lt;BR /&gt;
Perhaps I misunderstand the way the SECT_FILL command is not&lt;BR /&gt;
working for you.&lt;BR /&gt;
&lt;BR /&gt;
Regards,&lt;BR /&gt;
Peter</description>
      <pubDate>Mon, 23 Aug 2004 18:12:07 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/SECT-FILL-command-in-AC-8/m-p/60171#M40425</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2004-08-23T18:12:07Z</dc:date>
    </item>
    <item>
      <title>Re: SECT_FILL command in AC 8</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/SECT-FILL-command-in-AC-8/m-p/60172#M40426</link>
      <description>Peter&lt;BR /&gt;
&lt;BR /&gt;
I have solved it thankyou, I also built a test object. It seems that the placement of SECT_FILL command is important. I was wanting an object with multiple section fills and thought such attributes would be defined with the group data (like the materials) but it seems that it only works if it is defined with the PLACEGROUP command so I have to do a separate solids operation for each different section fill.&lt;BR /&gt;
&lt;BR /&gt;
GROUP "target1"&lt;BR /&gt;
	BRICK A,B,ZZYZX/2&lt;BR /&gt;
ENDGROUP&lt;BR /&gt;
&lt;BR /&gt;
GROUP "target2"&lt;BR /&gt;
	addz zzyzx/2&lt;BR /&gt;
	BRICK A,B,ZZYZX/2&lt;BR /&gt;
	DEL 1&lt;BR /&gt;
ENDGROUP&lt;BR /&gt;
&lt;BR /&gt;
GROUP "operator"&lt;BR /&gt;
	add a/3,b/3,-1&lt;BR /&gt;
	BRICK A/3,B/3,ZZYZX+2&lt;BR /&gt;
	DEL 1&lt;BR /&gt;
ENDGROUP&lt;BR /&gt;
&lt;BR /&gt;
SECT_FILL "Cut Stone",91,4,8&lt;BR /&gt;
&lt;BR /&gt;
PLACEGROUP ( SUBGROUP ("target1","operator") )&lt;BR /&gt;
&lt;BR /&gt;
SECT_FILL "Masonry Block",91,4,8&lt;BR /&gt;
&lt;BR /&gt;
PLACEGROUP ( SUBGROUP ("target2","operator") )&lt;BR /&gt;
&lt;BR /&gt;
KILLGROUP "target1"&lt;BR /&gt;
KILLGROUP "target2"&lt;BR /&gt;
KILLGROUP "operator"</description>
      <pubDate>Mon, 23 Aug 2004 22:08:46 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/SECT-FILL-command-in-AC-8/m-p/60172#M40426</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2004-08-23T22:08:46Z</dc:date>
    </item>
    <item>
      <title>Re: SECT_FILL command in AC 8</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/SECT-FILL-command-in-AC-8/m-p/60173#M40427</link>
      <description>makes you loose hair faster than it should</description>
      <pubDate>Mon, 23 Aug 2004 23:01:45 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/SECT-FILL-command-in-AC-8/m-p/60173#M40427</guid>
      <dc:creator>Aussie John</dc:creator>
      <dc:date>2004-08-23T23:01:45Z</dc:date>
    </item>
    <item>
      <title>Re: SECT_FILL command in AC 8</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/SECT-FILL-command-in-AC-8/m-p/60174#M40428</link>
      <description>Bill,&lt;BR /&gt;
Thank you for alerting us to the placement of SECT_FILL commands issue&lt;BR /&gt;
in solid geometry command sequences.&lt;BR /&gt;
It would have taken me a while to have figured that one out.&lt;BR /&gt;
Regards,&lt;BR /&gt;
Peter</description>
      <pubDate>Mon, 23 Aug 2004 23:43:50 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/SECT-FILL-command-in-AC-8/m-p/60174#M40428</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2004-08-23T23:43:50Z</dc:date>
    </item>
    <item>
      <title>Re: SECT_FILL command in AC 8</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/SECT-FILL-command-in-AC-8/m-p/60175#M40429</link>
      <description>With more testing...&lt;BR /&gt;
&lt;BR /&gt;
The SECT_FILL active at the time of the solid operation is the one that is used - this script bit also works for example:&lt;BR /&gt;
&lt;BR /&gt;
SECT_FILL "Cut Stone",91,4,8&lt;BR /&gt;
result1 = SUBGROUP ("target1","operator")&lt;BR /&gt;
SECT_FILL "Masonry Block",91,4,8&lt;BR /&gt;
result2 = SUBGROUP ("target2","operator")&lt;BR /&gt;
&lt;BR /&gt;
PLACEGROUP result1&lt;BR /&gt;
PLACEGROUP result2&lt;BR /&gt;
&lt;BR /&gt;
cheers all ... with greying hair!</description>
      <pubDate>Tue, 24 Aug 2004 02:17:49 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/SECT-FILL-command-in-AC-8/m-p/60175#M40429</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2004-08-24T02:17:49Z</dc:date>
    </item>
  </channel>
</rss>

