<?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: Beam's wrong rebar Hook orientation in Revit API Forum</title>
    <link>https://forums.autodesk.com/t5/revit-api-forum/beam-s-wrong-rebar-hook-orientation/m-p/11949404#M12327</link>
    <description>&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/910420"&gt;@REDO10&lt;/a&gt;,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;I've created a RVT22 new project, loaded the family I attached, tested your script(booth hooks to the right) and it works fine.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;I think your are sick of it because you're trying to do something that is too advanced to you at this point of your learning. Start with easy things first.&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 08 May 2023 15:48:30 GMT</pubDate>
    <dc:creator>Organon</dc:creator>
    <dc:date>2023-05-08T15:48:30Z</dc:date>
    <item>
      <title>Beam's wrong rebar Hook orientation</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/beam-s-wrong-rebar-hook-orientation/m-p/11931375#M12317</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;I tried to create beam’s rebar using Revit API, but I get Hook orientation opposed only when shoosing 90° value!!?..can anyone explain me the reason for that?&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Remark&lt;/STRONG&gt;: I'm working with Python and Dynamo&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Hook.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1208439iF0AFAC9A858F05DB/image-size/large?v=v2&amp;amp;px=999" role="button" title="Hook.png" alt="Hook.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Here my graph:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="rebar_test.png" style="width: 974px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1208441iFC80D877528A7541/image-size/large?v=v2&amp;amp;px=999" role="button" title="rebar_test.png" alt="rebar_test.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Check my code please:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import sys
import clr
import math
from System.Collections.Generic import IList, List

clr.AddReference('RevitAPI')
import Autodesk
from Autodesk.Revit.DB import *
from Autodesk.Revit.DB.Structure import *

clr.AddReference('RevitServices')
import RevitServices
from RevitServices.Persistence import DocumentManager
from RevitServices.Transactions import TransactionManager

clr.AddReference('RevitNodes')
import Revit
clr.ImportExtensions(Revit.GeometryConversion)

doc = DocumentManager.Instance.CurrentDBDocument

curve = IN[0].ToRevitType()
bar_type = UnwrapElement(IN[1])
ber_Hook_type = UnwrapElement(IN[6])
host = UnwrapElement(IN[3])
vect = IN[2].ToRevitType()
beam_width = IN[4].ToRevitType()
width = beam_width.Length
cover = IN[5]/0.3048
spacing = 0.10/0.3048

curv = List[Curve]()
curv.Add(curve)
TransactionManager.Instance.EnsureInTransaction(doc)
rebar = Rebar.CreateFromCurves(doc, RebarStyle.Standard, bar_type, ber_Hook_type, ber_Hook_type, host, vect, curv, RebarHookOrientation.Left, RebarHookOrientation.Right, True, False)
rebar.GetShapeDrivenAccessor().SetLayoutAsFixedNumber(math.ceil((width-2*cover)/spacing), width-2*cover, True, True, True)
TransactionManager.Instance.TransactionTaskDone()

OUT= rebar&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could anyone help me ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Sun, 30 Apr 2023 10:17:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/beam-s-wrong-rebar-hook-orientation/m-p/11931375#M12317</guid>
      <dc:creator>REDO10</dc:creator>
      <dc:date>2023-04-30T10:17:57Z</dc:date>
    </item>
    <item>
      <title>Re: Beam's wrong rebar Hook orientation</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/beam-s-wrong-rebar-hook-orientation/m-p/11942271#M12318</link>
      <description>&lt;P&gt;The reason why you are getting Hook orientation opposed only when choosing a 90° value is because of the way that the `RebarHookOrientation` enumeration is defined in the Revit API.&lt;/P&gt;&lt;P&gt;In Revit, a rebar can have hooks on both ends or on one end only. The `RebarHookOrientation` enumeration is used to specify the orientation of the hooks. For example, `RebarHookOrientation.Left` means that the hook is oriented towards the left end of the rebar, and `RebarHookOrientation.Right` means that the hook is oriented towards the right end of the rebar.&lt;/P&gt;&lt;P&gt;However, when using the `RebarHookOrientation.Angle` option, the hook is oriented relative to the direction of the rebar. If the angle value is less than 90 degrees, the hook is oriented towards the left end of the rebar. If the angle value is greater than 90 degrees, the hook is oriented towards the right end of the rebar.&lt;/P&gt;&lt;P&gt;So, if you want the hook to be oriented towards the left end of the rebar, you should use an angle value less than 90 degrees. If you want the hook to be oriented towards the right end of the rebar, you should use an angle value greater than 90 degrees.&lt;/P&gt;&lt;P&gt;Thanks and Regards&lt;/P&gt;&lt;P&gt;Jayhar M J&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 May 2023 18:05:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/beam-s-wrong-rebar-hook-orientation/m-p/11942271#M12318</guid>
      <dc:creator>jayhar</dc:creator>
      <dc:date>2023-05-04T18:05:26Z</dc:date>
    </item>
    <item>
      <title>Re: Beam's wrong rebar Hook orientation</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/beam-s-wrong-rebar-hook-orientation/m-p/11942618#M12319</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1055426"&gt;@jayhar&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Thanks for your explanation!!&lt;/P&gt;&lt;P&gt;I understand the premis of&amp;nbsp;&lt;SPAN&gt;&lt;STRONG&gt;RebarHookOrientation&lt;/STRONG&gt; (left or rigth) and&amp;nbsp;&lt;STRONG&gt;RebarHookOrientation.Angle&lt;/STRONG&gt;&amp;nbsp;and their uses in the code...speaking of your explanation is there an orientation conflicting when a 90° Hook is choosen for the two rebar ends?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;By the way, I asked the same question&amp;nbsp;&lt;A title="Wrong rebar Hook orientation REVIT API" href="https://forum.dynamobim.com/t/wrong-rebar-hook-orientation-revit-api/89094/33?u=redo10" target="_blank" rel="noopener"&gt;here&lt;/A&gt;&amp;nbsp;&amp;nbsp;(dynamobim forum) and this issue happens solely in my case, &amp;nbsp;so what exactely is the reason behaind this?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 May 2023 20:45:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/beam-s-wrong-rebar-hook-orientation/m-p/11942618#M12319</guid>
      <dc:creator>REDO10</dc:creator>
      <dc:date>2023-05-04T20:45:30Z</dc:date>
    </item>
    <item>
      <title>Re: Beam's wrong rebar Hook orientation</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/beam-s-wrong-rebar-hook-orientation/m-p/11943530#M12320</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1055426"&gt;@jayhar&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Thanks for your explanation!!&lt;/P&gt;&lt;P&gt;I understand the premis of&amp;nbsp;&lt;SPAN&gt;&lt;STRONG&gt;RebarHookOrientation&lt;/STRONG&gt;&amp;nbsp;(left or rigth) and&amp;nbsp;&lt;STRONG&gt;RebarHookOrientation.Angle&lt;/STRONG&gt;&amp;nbsp;and their uses in the code...speaking of your explanation is there an orientation conflicting when a 90° Hook is choosen for the two rebar ends?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;By the way, I asked the same question&amp;nbsp;&lt;A title="Wrong rebar Hook orientation REVIT API" href="https://forum.dynamobim.com/t/wrong-rebar-hook-orientation-revit-api/89094/33?u=redo10" target="_blank" rel="noopener nofollow noreferrer"&gt;here&lt;/A&gt;&amp;nbsp;&amp;nbsp;(dynamobim forum) and this issue happens solely in my case, &amp;nbsp;so what exactely is the reason behaind this?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2023 08:58:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/beam-s-wrong-rebar-hook-orientation/m-p/11943530#M12320</guid>
      <dc:creator>REDO10</dc:creator>
      <dc:date>2023-05-05T08:58:52Z</dc:date>
    </item>
    <item>
      <title>Re: Beam's wrong rebar Hook orientation</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/beam-s-wrong-rebar-hook-orientation/m-p/11945933#M12321</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2881136"&gt;@Organon&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1035859"&gt;@RPTHOMAS108&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have you any idea how to fix this issue?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Sat, 06 May 2023 13:08:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/beam-s-wrong-rebar-hook-orientation/m-p/11945933#M12321</guid>
      <dc:creator>REDO10</dc:creator>
      <dc:date>2023-05-06T13:08:24Z</dc:date>
    </item>
    <item>
      <title>Re: Beam's wrong rebar Hook orientation</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/beam-s-wrong-rebar-hook-orientation/m-p/11946096#M12322</link>
      <description>&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/910420"&gt;@REDO10&lt;/a&gt;,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;Sometimes the problem is specifically related to Revit families. Try to use the beam that I attach, it is from Revit 2021.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;Regards,&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 06 May 2023 15:49:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/beam-s-wrong-rebar-hook-orientation/m-p/11946096#M12322</guid>
      <dc:creator>Organon</dc:creator>
      <dc:date>2023-05-06T15:49:25Z</dc:date>
    </item>
    <item>
      <title>Re: Beam's wrong rebar Hook orientation</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/beam-s-wrong-rebar-hook-orientation/m-p/11946394#M12323</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2881136"&gt;@Organon&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the shared family&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tested it but I still have the same issue (this issue irritates me and I dont understand why it's happen solely for me &lt;span class="lia-unicode-emoji" title=":pouting_face:"&gt;😡&lt;/span&gt;)...have you take a look at my thread in dynamobim forum that&amp;nbsp; I linked above ?...I’m down and I don’t know how to solve this issue!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Sat, 06 May 2023 20:08:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/beam-s-wrong-rebar-hook-orientation/m-p/11946394#M12323</guid>
      <dc:creator>REDO10</dc:creator>
      <dc:date>2023-05-06T20:08:04Z</dc:date>
    </item>
    <item>
      <title>Re: Beam's wrong rebar Hook orientation</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/beam-s-wrong-rebar-hook-orientation/m-p/11946442#M12324</link>
      <description>&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/910420"&gt;@REDO10&lt;/a&gt;,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;You have to set both hooks to the right.&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 06 May 2023 20:59:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/beam-s-wrong-rebar-hook-orientation/m-p/11946442#M12324</guid>
      <dc:creator>Organon</dc:creator>
      <dc:date>2023-05-06T20:59:59Z</dc:date>
    </item>
    <item>
      <title>Re: Beam's wrong rebar Hook orientation</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/beam-s-wrong-rebar-hook-orientation/m-p/11947174#M12325</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2881136"&gt;@Organon&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2881136"&gt;@Organon&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;You have to set both hooks to the right.&lt;/FONT&gt;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;I've set both hooks to the right then to the left then I reversed between the right and the left for the Hook start and the end and nothing happens !!?? (I'm stuck in an endless loop and I'm sick off it!! ......this is not due to an issue I have in either Dynamo&amp;nbsp; or Revit settings?)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Sun, 07 May 2023 12:04:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/beam-s-wrong-rebar-hook-orientation/m-p/11947174#M12325</guid>
      <dc:creator>REDO10</dc:creator>
      <dc:date>2023-05-07T12:04:09Z</dc:date>
    </item>
    <item>
      <title>Re: Beam's wrong rebar Hook orientation</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/beam-s-wrong-rebar-hook-orientation/m-p/11949339#M12326</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2881136"&gt;@Organon&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;As I’m not yet mastering Revit API, and for a temporary solution, can you please&amp;nbsp; &amp;nbsp;put in my script above a condititional “&lt;/SPAN&gt;&lt;STRONG&gt;IF&lt;/STRONG&gt;&lt;SPAN&gt;” that’s check hook direction and reverse it if it’s wrong?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 08 May 2023 15:12:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/beam-s-wrong-rebar-hook-orientation/m-p/11949339#M12326</guid>
      <dc:creator>REDO10</dc:creator>
      <dc:date>2023-05-08T15:12:43Z</dc:date>
    </item>
    <item>
      <title>Re: Beam's wrong rebar Hook orientation</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/beam-s-wrong-rebar-hook-orientation/m-p/11949404#M12327</link>
      <description>&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/910420"&gt;@REDO10&lt;/a&gt;,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;I've created a RVT22 new project, loaded the family I attached, tested your script(booth hooks to the right) and it works fine.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;I think your are sick of it because you're trying to do something that is too advanced to you at this point of your learning. Start with easy things first.&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 08 May 2023 15:48:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/beam-s-wrong-rebar-hook-orientation/m-p/11949404#M12327</guid>
      <dc:creator>Organon</dc:creator>
      <dc:date>2023-05-08T15:48:30Z</dc:date>
    </item>
    <item>
      <title>Re: Beam's wrong rebar Hook orientation</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/beam-s-wrong-rebar-hook-orientation/m-p/11957276#M12328</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2881136"&gt;@Organon&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2881136"&gt;@Organon&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;I think your are sick of it because you're trying to do something that is too advanced to you at this point of your learning. Start with easy things first.&lt;/FONT&gt;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;I try to do things as simply as possible and I dont know where is the problem (by chance it only worked once and then it doesn’t work anymore!!??)...see what I'm doing &lt;A title="beam rebar" href="https://ibb.co/6yDRLJT" target="_blank" rel="noopener"&gt;here&lt;/A&gt;&amp;nbsp;and judge yourself&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ps: when I selected the 3rd beam (rotated beam )as shown above and executed the script I get the following error (is that related to the rebar or Hook orientation?):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="internal_error.png" style="width: 407px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1213261i5354D98372049D10/image-size/medium?v=v2&amp;amp;px=400" role="button" title="internal_error.png" alt="internal_error.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 11 May 2023 14:24:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/beam-s-wrong-rebar-hook-orientation/m-p/11957276#M12328</guid>
      <dc:creator>REDO10</dc:creator>
      <dc:date>2023-05-11T14:24:27Z</dc:date>
    </item>
    <item>
      <title>Re: Beam's wrong rebar Hook orientation</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/beam-s-wrong-rebar-hook-orientation/m-p/12001107#M12329</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi everyone,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;My issue is solved just by doing the same thing on this particular one&amp;nbsp;&lt;A href="https://forums.autodesk.com/t5/revit-api-forum/set-rebar-circular-distribution-path-and-fix-wrong-hook/td-p/11957981" target="_blank" rel="noopener"&gt;Set rebar circular distribution path and fix wrong hook orientation&lt;/A&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="beam.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1221640iA2EB892BD18003C0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="beam.png" alt="beam.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Wed, 31 May 2023 11:41:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/beam-s-wrong-rebar-hook-orientation/m-p/12001107#M12329</guid>
      <dc:creator>REDO10</dc:creator>
      <dc:date>2023-05-31T11:41:15Z</dc:date>
    </item>
  </channel>
</rss>

