<?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: Get Hole Direction As A Vector in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/get-hole-direction-as-a-vector/m-p/8784831#M97369</link>
    <description>&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7060800"&gt;@ianteneth&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Actually, it turns out i had two things wrong.&lt;/P&gt;
&lt;P&gt;1. To flip a vector you should scale it by -1, the way i did it in the code wrote earlier doesnt work.&lt;/P&gt;
&lt;P&gt;2. Positive direction is apparently the opposite direction of the PlanarEntityGeometry.Normal...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See attached ipt and run the ilogic code in it. Try flipping the direction of the hole feature and run it again. I think you'll get the idea then &lt;img class="lia-deferred-image lia-image-emoji" src="https://forums.autodesk.com/html/@B4D44A73814D7FC0D950DEDFACB97081/emoticons/1f642.png" alt=":slightly_smiling_face:" title=":slightly_smiling_face:" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 11 May 2019 10:09:57 GMT</pubDate>
    <dc:creator>JhoelForshav</dc:creator>
    <dc:date>2019-05-11T10:09:57Z</dc:date>
    <item>
      <title>Get Hole Direction As A Vector</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/get-hole-direction-as-a-vector/m-p/8757683#M96956</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Question: How can I get a unit vector representing the direction of a hole from the centerpoint through the center axis in the direction that it is extruded?&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am on Inventor Professional 2019.4 writing a C# application. I am trying to translate a point from the centerpoint (Hole.HoleCenterPoints) of a hole to the midpoint (half of the hole depth) of a hole. Therefore I need to get a unit vector that starts at the centerpoint of a hole and goes in the direction that the hole is extruded in. One of my current methods involves the following code:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;vector = hole.Sketch.PlanarEntityGeometry.Normal;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This code technically works as it gets a vector normal to the sketch that the hole centerpoint is drawn on. However, the direction of this vector isn't related to the extruded or extent direction of the hole. And this code is specifically for when the underlying geometry of the hole is based on the SketchPoint object.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I looked into the extent property of the hole (Hole.Extent) and accidentally found a direction property (Hole.Extent.Direction). However, this is not accessible in the API and I am not certain it will give me the information I need. The holes can be through holes so I cannot do anything fancy with the end face property (Hole.EndFaces). These holes can also be at any orientation. Anyone have any ideas?&lt;/P&gt;</description>
      <pubDate>Sun, 28 Apr 2019 01:31:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/get-hole-direction-as-a-vector/m-p/8757683#M96956</guid>
      <dc:creator>ianteneth</dc:creator>
      <dc:date>2019-04-28T01:31:45Z</dc:date>
    </item>
    <item>
      <title>Re: Get Hole Direction As A Vector</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/get-hole-direction-as-a-vector/m-p/8779664#M97285</link>
      <description>&lt;P&gt;Here is some additional information in case it helps someone.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Clarify Translate Method:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;This method is used to translate (move) the centerpoint along the axis of the hole using the hole direction vector.&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;holeCenterPoint.TranslateBy(unknownVector);&lt;/PRE&gt;
&lt;P&gt;&lt;STRONG&gt;Add Image:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;In this image you can see the centerpoint (Hole Center Point), the midpoint (New Translated Point [Mid Point]), and the hole direction vector (Unknown Vector). Unknown Vector is the unit vector that I am looking for.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="image.jpg" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/634519iD0EA7F91078CBA07/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.jpg" alt="image.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 May 2019 01:22:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/get-hole-direction-as-a-vector/m-p/8779664#M97285</guid>
      <dc:creator>ianteneth</dc:creator>
      <dc:date>2019-05-09T01:22:08Z</dc:date>
    </item>
    <item>
      <title>Re: Get Hole Direction As A Vector</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/get-hole-direction-as-a-vector/m-p/8779986#M97286</link>
      <description>&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7060800"&gt;@ianteneth&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think the extentdirection is relative to the sketchplane for the point/points defining your hole feature. Therefore i believe that if the direction is negative you need to flip the vector... Maybe something like this would work?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oDoc&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;PartDocument&lt;/SPAN&gt; = &lt;SPAN style="color: #800080;"&gt;ThisDoc&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;Document&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oCompDef&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;PartComponentDefinition&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;ComponentDefinition&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;hole&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;HoleFeature&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;oCompDef&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Features&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;HoleFeatures&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Item&lt;/SPAN&gt;(1)
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oTG&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;TransientGeometry&lt;/SPAN&gt; = &lt;SPAN style="color: #800080;"&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;TransientGeometry&lt;/SPAN&gt;
&lt;SPAN style="color: #808080;"&gt;'Get the normal for the sketchplane&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;vector&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;UnitVector&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;hole&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Sketch&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;PlanarEntityGeometry&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Normal&lt;/SPAN&gt;


&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;holeDir&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;PartFeatureExtentDirectionEnum&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;hole&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Extent&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Direction&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;PartFeatureExtentDirectionEnum&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;kNegativeExtentDirection&lt;/SPAN&gt;
	&lt;SPAN style="color: #808080;"&gt;'If hole extent direction is negative then flip the normal&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oMatrix&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;oTG&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;CreateMatrix&lt;/SPAN&gt;
	&lt;SPAN style="color: #800000;"&gt;oMatrix&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Invert&lt;/SPAN&gt;
	&lt;SPAN style="color: #800000;"&gt;vector&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;TransformBy&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;oMatrix&lt;/SPAN&gt;)
&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt;


&lt;/PRE&gt;</description>
      <pubDate>Thu, 09 May 2019 07:39:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/get-hole-direction-as-a-vector/m-p/8779986#M97286</guid>
      <dc:creator>JhoelForshav</dc:creator>
      <dc:date>2019-05-09T07:39:13Z</dc:date>
    </item>
    <item>
      <title>Re: Get Hole Direction As A Vector</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/get-hole-direction-as-a-vector/m-p/8781233#M97298</link>
      <description>&lt;P&gt;Hi! Thanks for the reply! I tested your code snippet quickly and it works in iLogic. If I can test this in my C# application I think it will do what I need. However, as you can see in the images below, neither Inventor's iLogic editor nor the Inventor API help shows Direction as a property of the HoleFeature.Extent object. I am not sure why iLogic can still run the code if the Direction property isn't public on the API though? Maybe this is an API issue?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The first image show code in the iLogic editor. The second image is from the Inventor API help section that ships with Inventor. These images are from Inventor 2020.&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Capture2.JPG" style="width: 362px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/634802iAEDC564049330B05/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture2.JPG" alt="Capture2.JPG" /&gt;&lt;/span&gt;&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-center" image-alt="Capture.JPG" style="width: 695px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/634803iB9D4DED23AE4FEFF/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.JPG" alt="Capture.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 May 2019 15:44:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/get-hole-direction-as-a-vector/m-p/8781233#M97298</guid>
      <dc:creator>ianteneth</dc:creator>
      <dc:date>2019-05-09T15:44:50Z</dc:date>
    </item>
    <item>
      <title>Re: Get Hole Direction As A Vector</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/get-hole-direction-as-a-vector/m-p/8781537#M97301</link>
      <description>&lt;P&gt;I think it might be because there are several different Extent types and therefore you can only see the properties that exists in all of them before defining which extent type your specific extent object is... Or something like that&lt;img id="smileyvery-happy" class="emoticon emoticon-smileyvery-happy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-very-happy.png" alt="Smiley Very Happy" title="Smiley Very Happy" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Maybe all these types does not have a property for direction is what im trying to say.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://help.autodesk.com/view/INVNTOR/2018/ENU/?guid=GUID-457EF0A2-A2F6-4C82-8E9C-4907C5AC7E5A" target="_blank"&gt;http://help.autodesk.com/view/INVNTOR/2018/ENU/?guid=GUID-457EF0A2-A2F6-4C82-8E9C-4907C5AC7E5A&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Anyway, I'm glad to hear the code works and I'm keeping my fingers crossed that you'll get it to work with C# aswell.&lt;/P&gt;
&lt;P&gt;Good luck on your project!&lt;/P&gt;</description>
      <pubDate>Thu, 09 May 2019 18:04:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/get-hole-direction-as-a-vector/m-p/8781537#M97301</guid>
      <dc:creator>JhoelForshav</dc:creator>
      <dc:date>2019-05-09T18:04:57Z</dc:date>
    </item>
    <item>
      <title>Re: Get Hole Direction As A Vector</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/get-hole-direction-as-a-vector/m-p/8782224#M97308</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks to &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5330176"&gt;@JhoelForshav&lt;/a&gt; for helping me get the Extent object working in C#!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now that I finally can determine the hole direction vector I am confused by what I get. Below is a code snippet that will display the normal vector of the sketch as well as the extent direction type of the hole.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Sub Main()
		
	Dim part As Inventor.PartDocument = ThisDoc.Document
	Dim hole As Inventor.HoleFeature = part.ComponentDefinition.Features.HoleFeatures(1)
	Dim axis As Inventor.UnitVector = hole.Sketch.PlanarEntityGeometry.Normal
	Dim direction As String = "Negative (Opposite sketch normal)"&lt;BR /&gt;
	If hole.Extent.Direction = PartFeatureExtentDirectionEnum.kPositiveExtentDirection Then
		direction = "Positive (Same as sketch normal)"	
	end if
		
	MessageBox.Show("Hole Extent: " &amp;amp; direction _
		&amp;amp; vbNewLine &amp;amp; "Sketch Normal Vector: X:" &amp;amp; axis.X &amp;amp; " Y:" &amp;amp; axis.Y _
		&amp;amp; " Z:" &amp;amp; axis.Z)
End Sub
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The results of this (for the simple cube part below) can be seen in the image below. We can see that the sketch normal vector and the hole extent direction vector are in the same direction per the API documentation because the direction type is kPositiveExtentDirection. And that the sketch normal vector is in the direction of Positive Y.&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-center" image-alt="Annotation 2019-05-09 202433.jpg" style="width: 410px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/634950i3EA2397BBF717678/image-size/large?v=v2&amp;amp;px=999" role="button" title="Annotation 2019-05-09 202433.jpg" alt="Annotation 2019-05-09 202433.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, as you can see in this screenshot below, it appears that the hole extent direction vector is opposite of the sketch normal vector. The hole extent direction appears to go to the left (Negative Y-axis). Where as we already saw that the sketch normal vector is in the direction of Positive Y-axis (right).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Did I confuse my axes and signs or should the direction type for this hole be kNegativeExtentDirection?&lt;/STRONG&gt;&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-center" image-alt="Annotation 2019-05-09 202402.jpg" style="width: 746px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/634951iD571AE5A0F2CD0E2/image-size/large?v=v2&amp;amp;px=999" role="button" title="Annotation 2019-05-09 202402.jpg" alt="Annotation 2019-05-09 202402.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 10 May 2019 00:42:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/get-hole-direction-as-a-vector/m-p/8782224#M97308</guid>
      <dc:creator>ianteneth</dc:creator>
      <dc:date>2019-05-10T00:42:51Z</dc:date>
    </item>
    <item>
      <title>Re: Get Hole Direction As A Vector</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/get-hole-direction-as-a-vector/m-p/8784831#M97369</link>
      <description>&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7060800"&gt;@ianteneth&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Actually, it turns out i had two things wrong.&lt;/P&gt;
&lt;P&gt;1. To flip a vector you should scale it by -1, the way i did it in the code wrote earlier doesnt work.&lt;/P&gt;
&lt;P&gt;2. Positive direction is apparently the opposite direction of the PlanarEntityGeometry.Normal...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See attached ipt and run the ilogic code in it. Try flipping the direction of the hole feature and run it again. I think you'll get the idea then &lt;img class="lia-deferred-image lia-image-emoji" src="https://forums.autodesk.com/html/@B4D44A73814D7FC0D950DEDFACB97081/emoticons/1f642.png" alt=":slightly_smiling_face:" title=":slightly_smiling_face:" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 11 May 2019 10:09:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/get-hole-direction-as-a-vector/m-p/8784831#M97369</guid>
      <dc:creator>JhoelForshav</dc:creator>
      <dc:date>2019-05-11T10:09:57Z</dc:date>
    </item>
    <item>
      <title>Re: Get Hole Direction As A Vector</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/get-hole-direction-as-a-vector/m-p/8784934#M97371</link>
      <description>&lt;P&gt;I saw that I've a comment in the ilogic code in the attached ipt saying something like "if the direction is negative, flip the vector". Just thought i should mention it because it can be confusing. The code flips the vector if the direction is positive as it should be. Just forgot to change the comment &lt;img class="lia-deferred-image lia-image-emoji" src="https://forums.autodesk.com/html/@B4D44A73814D7FC0D950DEDFACB97081/emoticons/1f642.png" alt=":slightly_smiling_face:" title=":slightly_smiling_face:" /&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 11 May 2019 12:41:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/get-hole-direction-as-a-vector/m-p/8784934#M97371</guid>
      <dc:creator>JhoelForshav</dc:creator>
      <dc:date>2019-05-11T12:41:56Z</dc:date>
    </item>
  </channel>
</rss>

