<?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: GLOB_CUTPLANES_INFO [4] in Libraries &amp; objects</title>
    <link>https://community.graphisoft.com/t5/Libraries-objects/GLOB-CUTPLANES-INFO-4/m-p/174979#M19586</link>
    <description>Hello Ben,&lt;BR /&gt;
I checked in the scripts of one of the RoofMaker&lt;BR /&gt;
objects (rafter) in both AC 10 and AC 12 and&lt;BR /&gt;
do not see GLOB_CUTPLANES_INFO invoked.&lt;BR /&gt;
I can only conclude that this global is used in&lt;BR /&gt;
the RoofMaker parts in AC 13 and later &lt;BR /&gt;
or I am blind. &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_biggrin.gif" style="display : inline;" /&gt; &lt;BR /&gt;
Thanks, Ben,&lt;BR /&gt;
Peter Devlin</description>
    <pubDate>Mon, 19 Jul 2010 16:07:38 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2010-07-19T16:07:38Z</dc:date>
    <item>
      <title>GLOB_CUTPLANES_INFO [4]</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GLOB-CUTPLANES-INFO-4/m-p/174973#M19577</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;T&gt;Hello,&lt;BR /&gt;
Could anyone direct me to information on the use &lt;BR /&gt;
of the global variable GLOB_CUTPLANES_INFO [4].&lt;BR /&gt;
I have found a statement declaring  it's existence &lt;BR /&gt;
in the AC 10 GDL manual but not how to use it.&lt;BR /&gt;
I have found no reference to it in AC help online.&lt;BR /&gt;
Directing me to a library part in AC 10 or AC 12&lt;BR /&gt;
that uses this global variable in it's scripts&lt;BR /&gt;
would be fine.&lt;BR /&gt;
Thank you,&lt;BR /&gt;
Peter Devlin&lt;/T&gt;&lt;/DIV&gt;</description>
      <pubDate>Sun, 18 Jul 2010 02:21:20 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GLOB-CUTPLANES-INFO-4/m-p/174973#M19577</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-07-18T02:21:20Z</dc:date>
    </item>
    <item>
      <title>Re: GLOB_CUTPLANES_INFO [4]</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GLOB-CUTPLANES-INFO-4/m-p/174974#M19579</link>
      <description>Hello,&lt;BR /&gt;
&lt;BR /&gt;
I do not know if you find this useful, but here is an example to &lt;BR /&gt;
use the GLOB_CUTPLANES_INFO[1]. The object's 2D shows the &lt;BR /&gt;
solid innard fill only if the cutplane actually cuts thru it.&lt;BR /&gt;
&lt;BR /&gt;
The other GLOB_CUTPLANES_INFO values refer to the values given &lt;BR /&gt;
AC Set Floor Plan Cutplane dialog as mentioned in the manual.&lt;BR /&gt;
&lt;BR /&gt;
Here is the master or 2D code;&lt;BR /&gt;

&lt;PRE&gt;&lt;I&gt;
&lt;/I&gt;
define line_type "It's above"	1, 2, 0.0002/A_*100, 0.0002/A_*100
define line_type "It's below"	1, 4, 0.0006/A_*100, 0.0002/A_*100, 0, 0.0002/A_*100
define solid_fill "Innards"
set fill "Innards"

!--we are cutting above the object
if GLOB_CUTPLANES_INFO[1] &amp;gt; zzyzx then
	line_type "It's below"
	frame_fill= 1+0+4!--show just the edge
endif

!--we are cutting the object
if GLOB_CUTPLANES_INFO[1] &amp;gt;=0 &amp;amp; GLOB_CUTPLANES_INFO[1] &amp;lt;=zzyzx then
	line_type 1!--solid
	frame_fill= 1+2+4!--show both edge and innards
endif

!--we are cutting below the object
if GLOB_CUTPLANES_INFO[1] &amp;lt; 0 then
	line_type "It's above"
	frame_fill= 1+0+4!--show just the edge
endif

poly2_ 4, frame_fill,
	0,	0,	1,
	a,	0,	1,
	a,	b,	1,
	0,	b,	1

&lt;/PRE&gt;

Hope this helps.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Regards, Juha</description>
      <pubDate>Sun, 18 Jul 2010 21:45:55 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GLOB-CUTPLANES-INFO-4/m-p/174974#M19579</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-07-18T21:45:55Z</dc:date>
    </item>
    <item>
      <title>Re: GLOB_CUTPLANES_INFO [4]</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GLOB-CUTPLANES-INFO-4/m-p/174975#M19581</link>
      <description>Hello Juha,&lt;BR /&gt;
Thank you for posting back.&lt;BR /&gt;
Yes, your sample code indeed helps.&lt;BR /&gt;
Presumably, one can access each of&lt;BR /&gt;
the four array values separately. I assume&lt;BR /&gt;
one can assign  one of the array values &lt;BR /&gt;
to a variable like this.&lt;BR /&gt;
 bb=GLOB_CUTPLANES_INFO[1]&lt;BR /&gt;
&lt;BR /&gt;
Is this correct ?&lt;BR /&gt;
Thanks,&lt;BR /&gt;
Peter Devlin</description>
      <pubDate>Sun, 18 Jul 2010 23:23:07 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GLOB-CUTPLANES-INFO-4/m-p/174975#M19581</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-07-18T23:23:07Z</dc:date>
    </item>
    <item>
      <title>Re: GLOB_CUTPLANES_INFO [4]</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GLOB-CUTPLANES-INFO-4/m-p/174976#M19583</link>
      <description>Hi Peter&lt;BR /&gt;
&lt;BR /&gt;
The best example of an object using the cutplanes would have to be any of the roofmaker parts. There is an option with the roofmaker library parts to display according to cutplane. It is done very well and of course uses 'GLOB_CUTPLANES_INFO'.</description>
      <pubDate>Mon, 19 Jul 2010 01:32:30 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GLOB-CUTPLANES-INFO-4/m-p/174976#M19583</guid>
      <dc:creator>Ben Cohen</dc:creator>
      <dc:date>2010-07-19T01:32:30Z</dc:date>
    </item>
    <item>
      <title>Re: GLOB_CUTPLANES_INFO [4]</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GLOB-CUTPLANES-INFO-4/m-p/174977#M19584</link>
      <description>Hello Ben,&lt;BR /&gt;
Thank you for your post.&lt;BR /&gt;
I will check it out and get back to you.&lt;BR /&gt;
It is a little late for me now, so it will be somewhat later.&lt;BR /&gt;
Thank you,&lt;BR /&gt;
Peter Devlin</description>
      <pubDate>Mon, 19 Jul 2010 03:27:08 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GLOB-CUTPLANES-INFO-4/m-p/174977#M19584</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-07-19T03:27:08Z</dc:date>
    </item>
    <item>
      <title>Re: GLOB_CUTPLANES_INFO [4]</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GLOB-CUTPLANES-INFO-4/m-p/174978#M19585</link>
      <description>Hi Peter&lt;BR /&gt;
&lt;BR /&gt;
Always happy to help a helper &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_smile.gif" style="display : inline;" /&gt;</description>
      <pubDate>Mon, 19 Jul 2010 03:29:09 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GLOB-CUTPLANES-INFO-4/m-p/174978#M19585</guid>
      <dc:creator>Ben Cohen</dc:creator>
      <dc:date>2010-07-19T03:29:09Z</dc:date>
    </item>
    <item>
      <title>Re: GLOB_CUTPLANES_INFO [4]</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GLOB-CUTPLANES-INFO-4/m-p/174979#M19586</link>
      <description>Hello Ben,&lt;BR /&gt;
I checked in the scripts of one of the RoofMaker&lt;BR /&gt;
objects (rafter) in both AC 10 and AC 12 and&lt;BR /&gt;
do not see GLOB_CUTPLANES_INFO invoked.&lt;BR /&gt;
I can only conclude that this global is used in&lt;BR /&gt;
the RoofMaker parts in AC 13 and later &lt;BR /&gt;
or I am blind. &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_biggrin.gif" style="display : inline;" /&gt; &lt;BR /&gt;
Thanks, Ben,&lt;BR /&gt;
Peter Devlin</description>
      <pubDate>Mon, 19 Jul 2010 16:07:38 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GLOB-CUTPLANES-INFO-4/m-p/174979#M19586</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-07-19T16:07:38Z</dc:date>
    </item>
    <item>
      <title>Re: GLOB_CUTPLANES_INFO [4]</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GLOB-CUTPLANES-INFO-4/m-p/174980#M19587</link>
      <description>Hi,&lt;BR /&gt;
&lt;BR /&gt;
Another good example is the "FloorPlanCutPlane" object of the Example Library in the Basic Library. You can find it in the Developers section of the GS Support page. BTW the skylight object use this, too. Dunno from which version on...&lt;BR /&gt;
&lt;BR /&gt;
Regs,</description>
      <pubDate>Mon, 19 Jul 2010 17:26:52 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GLOB-CUTPLANES-INFO-4/m-p/174980#M19587</guid>
      <dc:creator>ztaskai</dc:creator>
      <dc:date>2010-07-19T17:26:52Z</dc:date>
    </item>
    <item>
      <title>Re: GLOB_CUTPLANES_INFO [4]</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GLOB-CUTPLANES-INFO-4/m-p/174981#M19588</link>
      <description>Hello Zsolt,&lt;BR /&gt;
Thanks for the tip.&lt;BR /&gt;
I think I recall seeing the AC 10 skylight object&lt;BR /&gt;
displayed as being cut at the floor plan cut plane.&lt;BR /&gt;
I am going to check it out.&lt;BR /&gt;
Thanks,&lt;BR /&gt;
Peter Devlin</description>
      <pubDate>Mon, 19 Jul 2010 17:35:44 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GLOB-CUTPLANES-INFO-4/m-p/174981#M19588</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-07-19T17:35:44Z</dc:date>
    </item>
  </channel>
</rss>

