<?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: Cut part way into an object?? in Libraries &amp; objects</title>
    <link>https://community.graphisoft.com/t5/Libraries-objects/Cut-part-way-into-an-object/m-p/239262#M4997</link>
    <description>CUTPOLYA is probably easier.&lt;BR /&gt;

&lt;PRE&gt;CUTPOLYA n, status, d,
x1, y1, mask1, ..., xn, yn, maskn&lt;/PRE&gt;

d: the distance between the local origin and the end of the half-infinite tube.&lt;BR /&gt;
0: means a cut with an infinite tube.&lt;BR /&gt;
&lt;BR /&gt;
Barry.</description>
    <pubDate>Tue, 24 Oct 2017 00:51:03 GMT</pubDate>
    <dc:creator>Barry Kelly</dc:creator>
    <dc:date>2017-10-24T00:51:03Z</dc:date>
    <item>
      <title>Cut part way into an object??</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Cut-part-way-into-an-object/m-p/239259#M4994</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;T&gt;I am trying to cut part way into my object in the GDL script but I can't seem to make it work. Everything I've tried/read makes the hole go the entire way through the object. How do I achieve this?&lt;BR /&gt;
&lt;BR /&gt;
I know I could achieve it with a morph and SEO but I really don't want to use morphs to create it due to wanting to be able to adjust it easily as well as reducing the amount of lines in my script. I want to create the same effect as using an SEO but with code instead.&lt;BR /&gt;
&lt;BR /&gt;
Thanks&lt;/T&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 23 Oct 2017 11:54:50 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Cut-part-way-into-an-object/m-p/239259#M4994</guid>
      <dc:creator>JGoode</dc:creator>
      <dc:date>2017-10-23T11:54:50Z</dc:date>
    </item>
    <item>
      <title>Re: Cut part way into an object??</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Cut-part-way-into-an-object/m-p/239260#M4995</link>
      <description>JGoode:&lt;BR /&gt;
&lt;BR /&gt;
Take a look at the &lt;FONT color="blue"&gt;CUTFORM&lt;/FONT&gt; command, it can control the depth of the cut.&lt;BR /&gt;
&lt;BR /&gt;
David</description>
      <pubDate>Mon, 23 Oct 2017 12:46:55 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Cut-part-way-into-an-object/m-p/239260#M4995</guid>
      <dc:creator>David Maudlin</dc:creator>
      <dc:date>2017-10-23T12:46:55Z</dc:date>
    </item>
    <item>
      <title>Re: Cut part way into an object??</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Cut-part-way-into-an-object/m-p/239261#M4996</link>
      <description>&lt;BLOCKQUOTE&gt;David wrote:&lt;BR /&gt;JGoode:&lt;BR /&gt;
&lt;BR /&gt;
Take a look at the &lt;FONT color="blue"&gt;CUTFORM&lt;/FONT&gt; command, it can control the depth of the cut.&lt;BR /&gt;
&lt;BR /&gt;
David&lt;/BLOCKQUOTE&gt; Just had a look, I was trying to use cutpoly before. I don't really understand cutform and how the direction part of the script works?&lt;BR /&gt;
I keep getting an error saying too many parameters at line 1&lt;BR /&gt;

&lt;PRE&gt;CUTFORM 5, 1, 15,
        1, 1, 1, 0.5,
        0.2, 0.2, 15,
        0.8, 0.2, 15,
		0.8, 0.8, 15,
		0.2, 0.8, 15,
		0.2, 0.2, 15

BLOCK 1, 1, 1&lt;/PRE&gt;</description>
      <pubDate>Mon, 23 Oct 2017 13:07:32 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Cut-part-way-into-an-object/m-p/239261#M4996</guid>
      <dc:creator>JGoode</dc:creator>
      <dc:date>2017-10-23T13:07:32Z</dc:date>
    </item>
    <item>
      <title>Re: Cut part way into an object??</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Cut-part-way-into-an-object/m-p/239262#M4997</link>
      <description>CUTPOLYA is probably easier.&lt;BR /&gt;

&lt;PRE&gt;CUTPOLYA n, status, d,
x1, y1, mask1, ..., xn, yn, maskn&lt;/PRE&gt;

d: the distance between the local origin and the end of the half-infinite tube.&lt;BR /&gt;
0: means a cut with an infinite tube.&lt;BR /&gt;
&lt;BR /&gt;
Barry.</description>
      <pubDate>Tue, 24 Oct 2017 00:51:03 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Cut-part-way-into-an-object/m-p/239262#M4997</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2017-10-24T00:51:03Z</dc:date>
    </item>
    <item>
      <title>Re: Cut part way into an object??</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Cut-part-way-into-an-object/m-p/239263#M4998</link>
      <description>&lt;BLOCKQUOTE&gt;JGoode wrote:&lt;BR /&gt;&lt;BLOCKQUOTE&gt;David wrote:&lt;BR /&gt;JGoode:&lt;BR /&gt;
&lt;BR /&gt;
Take a look at the &lt;FONT color="blue"&gt;CUTFORM&lt;/FONT&gt; command, it can control the depth of the cut.&lt;BR /&gt;
&lt;BR /&gt;
David&lt;/BLOCKQUOTE&gt; Just had a look, I was trying to use cutpoly before. I don't really understand cutform and how the direction part of the script works?&lt;BR /&gt;
I keep getting an error saying too many parameters at line 1&lt;BR /&gt;

&lt;PRE&gt;CUTFORM 5, 1, 15,
        1, 1, 1, 0.5,
        0.2, 0.2, 15,
        0.8, 0.2, 15,
		0.8, 0.8, 15,
		0.2, 0.8, 15,
		0.2, 0.2, 15

BLOCK 1, 1, 1&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;
The direction is set in the second line. For example &lt;FONT color="blue"&gt;0, 0, 1, 0.5,&lt;/FONT&gt; will work in the z direction.&lt;BR /&gt;
&lt;BR /&gt;
The &lt;FONT color="blue"&gt;status&lt;/FONT&gt; is set to 15, which is not a valid option:
&lt;PRE&gt;status: Controls the extent of the cutting body and the treatment of the generated cut polygons and new edges.
status = j1 + 2*j2 + 8*j4 + 16*j5 + 32*j6 + 64*j7 + 128*j8 + 256*j9, where each j can be 0 or 1.&lt;/PRE&gt;

David</description>
      <pubDate>Tue, 24 Oct 2017 13:21:29 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Cut-part-way-into-an-object/m-p/239263#M4998</guid>
      <dc:creator>David Maudlin</dc:creator>
      <dc:date>2017-10-24T13:21:29Z</dc:date>
    </item>
  </channel>
</rss>

