<?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: Join between 3 beams in Revit API Forum</title>
    <link>https://forums.autodesk.com/t5/revit-api-forum/join-between-3-beams/m-p/13029976#M3038</link>
    <description>&lt;P&gt;Thank you . Its working for me now. I disallowed join for Beam2 and Beam3 and Beam1 kept as it is. To Disallow join I used&amp;nbsp;this API&lt;STRONG&gt; StructuralFramingUtils.DisallowJoinAtEnd(girderInstance, 0); &lt;/STRONG&gt;I made sure that always Beam2 and Beam3 are inserted before Beam1.It is working for join between 3 beams .&lt;/P&gt;</description>
    <pubDate>Thu, 19 Sep 2024 05:11:54 GMT</pubDate>
    <dc:creator>dayanand_rakte</dc:creator>
    <dc:date>2024-09-19T05:11:54Z</dc:date>
    <item>
      <title>Join between 3 beams</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/join-between-3-beams/m-p/13024994#M3035</link>
      <description>&lt;P&gt;Hi everyone , I am struggling with join/connection between&amp;nbsp; 3 beams .As per attachment ,point highlighted with orange color is endpoint location of Beam2 and Beam1 and same point is start point location for Beam3. I want to connect these beams as per Expected Outcome image. It will be ok if there is no join between these three beams but they should place as per expected outcome image.&lt;BR /&gt;&lt;STRONG&gt;First approach I tried&lt;/STRONG&gt; : I have not used JoinGeometry API and directly placed beams as per their location. In this approach I am getting random results, any of the the beam is extending which I don't have control.&lt;BR /&gt;&lt;STRONG&gt;Second approach I tried&lt;/STRONG&gt; : I used &lt;STRONG&gt;join geometry API&lt;/STRONG&gt; .Below is the code for that and Current condition image is the output of this approach. Kindly please suggest how to get the required results.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;private void JoinGeometryBeam1ToBeam2Beam3(Document activeDoc, FamilyInstance Beam1)&lt;BR /&gt;{&lt;/P&gt;&lt;P&gt;XYZ minPt = primaryBeam.get_BoundingBox(activeDoc.ActiveView).Min;&lt;BR /&gt;XYZ maxPt = primaryBeam.get_BoundingBox(activeDoc.ActiveView).Max;&lt;/P&gt;&lt;P&gt;Outline outLine = new Outline(minPt, maxPt);&lt;BR /&gt;outLine.Scale(1.5);&lt;BR /&gt;BoundingBoxIntersectsFilter filter = new BoundingBoxIntersectsFilter(outLine);&lt;/P&gt;&lt;P&gt;List&amp;lt;FamilyInstance&amp;gt; connectedBeams = new FilteredElementCollector(activeDoc).WherePasses(filter)&lt;BR /&gt;.OfCategory(BuiltInCategory.OST_StructuralFraming)&lt;BR /&gt;.OfClass(typeof(FamilyInstance)).Cast&amp;lt;FamilyInstance&amp;gt;().ToList();&lt;BR /&gt;&lt;BR /&gt;foreach (FamilyInstance beam in connectedBeams)&lt;BR /&gt;{&lt;BR /&gt;JoinGeometryUtils.JoinGeometry(this.ActiveDoc, beam, Beam1);&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;</description>
      <pubDate>Tue, 17 Sep 2024 04:58:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/join-between-3-beams/m-p/13024994#M3035</guid>
      <dc:creator>dayanand_rakte</dc:creator>
      <dc:date>2024-09-17T04:58:49Z</dc:date>
    </item>
    <item>
      <title>Re: Join between 3 beams</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/join-between-3-beams/m-p/13025019#M3036</link>
      <description>&lt;P&gt;Good question. I &lt;A href="https://autodesk.slack.com/archives/C0SR6NAP8/p1726550439388909" target="_blank"&gt;asked&lt;/A&gt; the development team for you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Sep 2024 05:22:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/join-between-3-beams/m-p/13025019#M3036</guid>
      <dc:creator>jeremy_tammik</dc:creator>
      <dc:date>2024-09-17T05:22:12Z</dc:date>
    </item>
    <item>
      <title>Re: Join between 3 beams</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/join-between-3-beams/m-p/13029372#M3037</link>
      <description>&lt;P&gt;This something we struggle with daily, and im not sure a programmatic approach could help. What i mean, in your current condition, manually check the Beam/Column Join tool, do you get three arrows? Half the time we only get two. which means we have to completely break the connection between all three (drag them away), then then fillet each one back together. This issue has existed since my company started using Revit, back in Structure 3 (2009?).&lt;/P&gt;</description>
      <pubDate>Wed, 18 Sep 2024 20:40:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/join-between-3-beams/m-p/13029372#M3037</guid>
      <dc:creator>ctm_mka</dc:creator>
      <dc:date>2024-09-18T20:40:03Z</dc:date>
    </item>
    <item>
      <title>Re: Join between 3 beams</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/join-between-3-beams/m-p/13029976#M3038</link>
      <description>&lt;P&gt;Thank you . Its working for me now. I disallowed join for Beam2 and Beam3 and Beam1 kept as it is. To Disallow join I used&amp;nbsp;this API&lt;STRONG&gt; StructuralFramingUtils.DisallowJoinAtEnd(girderInstance, 0); &lt;/STRONG&gt;I made sure that always Beam2 and Beam3 are inserted before Beam1.It is working for join between 3 beams .&lt;/P&gt;</description>
      <pubDate>Thu, 19 Sep 2024 05:11:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/join-between-3-beams/m-p/13029976#M3038</guid>
      <dc:creator>dayanand_rakte</dc:creator>
      <dc:date>2024-09-19T05:11:54Z</dc:date>
    </item>
    <item>
      <title>Re: Join between 3 beams</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/join-between-3-beams/m-p/13085219#M3039</link>
      <description>&lt;P&gt;Hello team ,&lt;BR /&gt;As mentioned above regarding resolution of my query . issue got resolved for only 70% of the&amp;nbsp; beam joints however still 30% of beam joints is having the same issue and it not resolved yet.&lt;BR /&gt;I would appreciate if you could provide solution to achieve this for all 100 % of beam joints&lt;/P&gt;</description>
      <pubDate>Tue, 15 Oct 2024 10:46:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/join-between-3-beams/m-p/13085219#M3039</guid>
      <dc:creator>dayanand_rakte</dc:creator>
      <dc:date>2024-10-15T10:46:19Z</dc:date>
    </item>
    <item>
      <title>Re: Join between 3 beams</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/join-between-3-beams/m-p/13085222#M3040</link>
      <description>&lt;P&gt;Can you share a &lt;U&gt;&lt;STRONG&gt;complete minimal reproducible case&lt;/STRONG&gt;&lt;/U&gt; for each of the situations, where it works and where it does not? Then we can ask the development team to take a look at it, and others may be able to spot something as well.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://thebuildingcoder.typepad.com/blog/about-the-author.html#1b" target="_blank"&gt;https://thebuildingcoder.typepad.com/blog/about-the-author.html#1b&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Oct 2024 10:49:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/join-between-3-beams/m-p/13085222#M3040</guid>
      <dc:creator>jeremy_tammik</dc:creator>
      <dc:date>2024-10-15T10:49:40Z</dc:date>
    </item>
  </channel>
</rss>

