<?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 Inner versus outer edges on Shape O to apply setback in ArcGIS CityEngine Questions</title>
    <link>https://community.esri.com/t5/arcgis-cityengine-questions/inner-versus-outer-edges-on-shape-o-to-apply/m-p/1677486#M11601</link>
    <description>&lt;P&gt;How would I go about tagging inner versus outer edges on a O shape in particular. I am wanting to extrude a Shape O and comp(f) on the top and then applying a front, rear, left, right side setback (for upper storeys) however the shape is applying these setbacks from the inside too when I just want it to apply from the outer edges.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="260114_CE-OShapeSetback-1.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/146758i6A0D7DCF66CC35C7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="260114_CE-OShapeSetback-1.png" alt="260114_CE-OShapeSetback-1.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="260114_CE-OShapeSetback-2.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/146757iE344B24D0E4841CF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="260114_CE-OShapeSetback-2.png" alt="260114_CE-OShapeSetback-2.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 14 Jan 2026 04:58:51 GMT</pubDate>
    <dc:creator>jabrett</dc:creator>
    <dc:date>2026-01-14T04:58:51Z</dc:date>
    <item>
      <title>Inner versus outer edges on Shape O to apply setback</title>
      <link>https://community.esri.com/t5/arcgis-cityengine-questions/inner-versus-outer-edges-on-shape-o-to-apply/m-p/1677486#M11601</link>
      <description>&lt;P&gt;How would I go about tagging inner versus outer edges on a O shape in particular. I am wanting to extrude a Shape O and comp(f) on the top and then applying a front, rear, left, right side setback (for upper storeys) however the shape is applying these setbacks from the inside too when I just want it to apply from the outer edges.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="260114_CE-OShapeSetback-1.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/146758i6A0D7DCF66CC35C7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="260114_CE-OShapeSetback-1.png" alt="260114_CE-OShapeSetback-1.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="260114_CE-OShapeSetback-2.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/146757iE344B24D0E4841CF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="260114_CE-OShapeSetback-2.png" alt="260114_CE-OShapeSetback-2.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jan 2026 04:58:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-cityengine-questions/inner-versus-outer-edges-on-shape-o-to-apply/m-p/1677486#M11601</guid>
      <dc:creator>jabrett</dc:creator>
      <dc:date>2026-01-14T04:58:51Z</dc:date>
    </item>
    <item>
      <title>Re: Inner versus outer edges on Shape O to apply setback</title>
      <link>https://community.esri.com/t5/arcgis-cityengine-questions/inner-versus-outer-edges-on-shape-o-to-apply/m-p/1679903#M11604</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/753701"&gt;@jabrett&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The &lt;A href="https://doc.arcgis.com/en/cityengine/latest/cga/cga-setback.htm" target="_self"&gt;setback&lt;/A&gt; operation, as well as the &lt;A href="https://doc.arcgis.com/en/cityengine/latest/cga/cga-shapeluo-operations.htm" target="_self"&gt;shapeL/shapeU/shapeO&lt;/A&gt; operations, automatically tag the resulting edges. These can be used as basis to differentiate the inner/outer edges.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;LI-CODE lang="c"&gt;BuildableArea--&amp;gt;
    shapeU(10,10,10) { shape: PodiumFootprint | remainder: Yard }

PodiumFootprint --&amp;gt;
    // this comes from shapeU and each edge is tagged "setback.front", "setback.side" or "setback.back"
    // we can use these tags to differentiate the 'left' on the front from the back:
    setback(2) { left &amp;amp;&amp;amp; isTagged("setback.front"): UpperPodiumFootprint 
               | remainder: TerraceFootprint }&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It might be better and more explicit to manage your own tags. In this case we would start by tagging the original edges. The setback will automatically copy these tags to the respective new setbacked edges (which is useful when we want to continue on the remainder). In your use case, this is not needed (as we continue on the setback faces and want to distinguish the new/original edges). we can fix that using &lt;A href="https://doc.arcgis.com/en/cityengine/latest/cga/cga-modify-operation.htm" target="_self"&gt;modify&lt;/A&gt; to remove those copied tags from the new edges. We can then use the tag to select the correct edges for the subsequent setback operation.&lt;/P&gt;&lt;LI-CODE lang="c"&gt;Footprint --&amp;gt;
   tag("OriginalEdge", edges)
   shapeU(10,10,10) { shape: PodiumFootprint | remainder: Yard }

PodiumFootprint --&amp;gt;
     // the "OriginalEdge" tag stays on all original edges + it is copied automatically to the setbacked edges.
     // In this case we dont want thme on the new edges. We can remove them using modify
     modify(e) { isTagged("setback.back"): deleteTags("OriginalEdge") X. }
     setback(2) { left &amp;amp;&amp;amp; isTagged("OriginalEdge"): UpperPodiumFootprint 
                | remainder: Terrace }&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope this helps. Happy to assist also with further questions. If you want me to have a look at your concrete example, please include the cga code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best&lt;/P&gt;&lt;P&gt;Niklaus&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jan 2026 13:02:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-cityengine-questions/inner-versus-outer-edges-on-shape-o-to-apply/m-p/1679903#M11604</guid>
      <dc:creator>Houskan</dc:creator>
      <dc:date>2026-01-26T13:02:14Z</dc:date>
    </item>
    <item>
      <title>Re: Inner versus outer edges on Shape O to apply setback</title>
      <link>https://community.esri.com/t5/arcgis-cityengine-questions/inner-versus-outer-edges-on-shape-o-to-apply/m-p/1680130#M11605</link>
      <description>&lt;P&gt;Many thanks Niklaus, I will try this out.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jan 2026 23:48:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-cityengine-questions/inner-versus-outer-edges-on-shape-o-to-apply/m-p/1680130#M11605</guid>
      <dc:creator>jabrett</dc:creator>
      <dc:date>2026-01-26T23:48:24Z</dc:date>
    </item>
  </channel>
</rss>

