<?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: Create circular pattern in assembly in Inventor Programming Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-forum/create-circular-pattern-in-assembly/m-p/10111206#M52794</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry, I got this error.&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="error.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/885465i75C457B07C6847FA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="error.png" alt="error.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have attach files.&lt;/P&gt;</description>
    <pubDate>Thu, 25 Feb 2021 14:17:35 GMT</pubDate>
    <dc:creator>jedQB94J</dc:creator>
    <dc:date>2021-02-25T14:17:35Z</dc:date>
    <item>
      <title>Create circular pattern in assembly</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/create-circular-pattern-in-assembly/m-p/10110582#M52792</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried copy som code from the forum, there looks like something I need, what I need i if the "workPlane_sub_beam" are = 0 then do nothing else create an circular pattern on "Y axis" instance of 2.&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="circular.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/885343iA410FD110319AB80/image-size/medium?v=v2&amp;amp;px=400" role="button" title="circular.png" alt="circular.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN style="color: #ce5c95;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #9d6bce;"&gt;Parameter&lt;/SPAN&gt;(&lt;SPAN style="color: #35b173;"&gt;"Skeleton"&lt;/SPAN&gt;, &lt;SPAN style="color: #35b173;"&gt;"WorkPlane_sub_beam"&lt;/SPAN&gt;) = 0 &lt;SPAN style="color: #ce5c95;"&gt;Then&lt;/SPAN&gt;
	&lt;SPAN style="color: #b2b2b5;"&gt;' do nothing&lt;/SPAN&gt;
&lt;SPAN style="color: #ce5c95;"&gt;Else&lt;/SPAN&gt;

&lt;SPAN style="color: #ce5c95;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #db9652;"&gt;oCdef&lt;/SPAN&gt; &lt;SPAN style="color: #ce5c95;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #db9652;"&gt;ComponentDefinition&lt;/SPAN&gt;
&lt;SPAN style="color: #db9652;"&gt;oCdef&lt;/SPAN&gt; = &lt;SPAN style="color: #9d6bce;"&gt;ThisDoc&lt;/SPAN&gt;.&lt;SPAN style="color: #9d6bce;"&gt;Document&lt;/SPAN&gt;.&lt;SPAN style="color: #db9652;"&gt;ComponentDefinition&lt;/SPAN&gt;

&lt;SPAN style="color: #ce5c95;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #db9652;"&gt;objCol&lt;/SPAN&gt; &lt;SPAN style="color: #ce5c95;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #db9652;"&gt;ObjectCollection&lt;/SPAN&gt;
&lt;SPAN style="color: #db9652;"&gt;objCol&lt;/SPAN&gt; = &lt;SPAN style="color: #9d6bce;"&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN style="color: #db9652;"&gt;TransientObjects&lt;/SPAN&gt;.&lt;SPAN style="color: #db9652;"&gt;CreateObjectCollection&lt;/SPAN&gt;

&lt;SPAN style="color: #b2b2b5;"&gt;'Feature to be patterned&lt;/SPAN&gt;
&lt;SPAN style="color: #db9652;"&gt;objCol&lt;/SPAN&gt;.&lt;SPAN style="color: #db9652;"&gt;Add&lt;/SPAN&gt;(&lt;SPAN style="color: #db9652;"&gt;oCdef&lt;/SPAN&gt;.&lt;SPAN style="color: #db9652;"&gt;Features&lt;/SPAN&gt;(&lt;SPAN style="color: #35b173;"&gt;"Extrusion1"&lt;/SPAN&gt;))

&lt;SPAN style="color: #b2b2b5;"&gt;'degrees&lt;/SPAN&gt;
&lt;SPAN style="color: #db9652;"&gt;oDeg&lt;/SPAN&gt; = 180 

&lt;SPAN style="color: #b2b2b5;"&gt;'create pattern&lt;/SPAN&gt;
&lt;SPAN style="color: #b2b2b5;"&gt;'....CircularPatternFeatures.Add(Features in Pattern, Axis, NaturalAxisDirection, Count, Angle, FitWithinAngle)&lt;/SPAN&gt;
&lt;SPAN style="color: #db9652;"&gt;oCdef&lt;/SPAN&gt;.&lt;SPAN style="color: #db9652;"&gt;Features&lt;/SPAN&gt;.&lt;SPAN style="color: #db9652;"&gt;CircularPatternFeatures&lt;/SPAN&gt;.&lt;SPAN style="color: #db9652;"&gt;Add&lt;/SPAN&gt;(&lt;SPAN style="color: #db9652;"&gt;objCol&lt;/SPAN&gt;, &lt;SPAN style="color: #db9652;"&gt;oCdef&lt;/SPAN&gt;.&lt;SPAN style="color: #db9652;"&gt;WorkAxes&lt;/SPAN&gt;.&lt;SPAN style="color: #db9652;"&gt;Item&lt;/SPAN&gt;(&lt;SPAN style="color: #35b173;"&gt;"Z Axis"&lt;/SPAN&gt;), &lt;SPAN style="color: #ce5c95;"&gt;False&lt;/SPAN&gt;, 2, &lt;SPAN style="color: #db9652;"&gt;oDeg&lt;/SPAN&gt; , &lt;SPAN style="color: #ce5c95;"&gt;True&lt;/SPAN&gt;)
&lt;SPAN style="color: #ce5c95;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ce5c95;"&gt;If&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Feb 2021 09:28:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/create-circular-pattern-in-assembly/m-p/10110582#M52792</guid>
      <dc:creator>jedQB94J</dc:creator>
      <dc:date>2021-02-25T09:28:37Z</dc:date>
    </item>
    <item>
      <title>Re: Create circular pattern in assembly</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/create-circular-pattern-in-assembly/m-p/10110906#M52793</link>
      <description>&lt;P&gt;The .Add method is old / not available anymore&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;there are a few posts about this in the forums, here are a few of them with more info&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/inventor-customization/the-hole-pattern-is-not-at-uniform-length-radially/m-p/9861180#M117988" target="_blank"&gt;https://forums.autodesk.com/t5/inventor-customization/the-hole-pattern-is-not-at-uniform-length-radially/m-p/9861180#M117988&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/inventor-customization/create-circular-pattern-feature/m-p/5593847" target="_blank"&gt;https://forums.autodesk.com/t5/inventor-customization/create-circular-pattern-feature/m-p/5593847&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is working code to do what you want. It is more complicated as it is made to ensure there are no errors as it was taken from some other code i wrote.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;' Check document is a part / a document is open&lt;/SPAN&gt;
&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;Documents&lt;/SPAN&gt;.&lt;SPAN&gt;VisibleDocuments&lt;/SPAN&gt;.&lt;SPAN&gt;Count&lt;/SPAN&gt; = 0 &lt;SPAN&gt;Or&lt;/SPAN&gt; &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveEditDocument&lt;/SPAN&gt;.&lt;SPAN&gt;DocumentType&lt;/SPAN&gt; &amp;lt;&amp;gt; &lt;SPAN&gt;Inventor&lt;/SPAN&gt;.&lt;SPAN&gt;DocumentTypeEnum&lt;/SPAN&gt;.&lt;SPAN&gt;kPartDocumentObject&lt;/SPAN&gt; &lt;SPAN&gt;Then&lt;/SPAN&gt;
	&lt;SPAN&gt;MessageBox&lt;/SPAN&gt;.&lt;SPAN&gt;Show&lt;/SPAN&gt;(&lt;SPAN&gt;"A Part document must be open"&lt;/SPAN&gt;)
&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;

&lt;SPAN&gt;' Get active part document&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oDoc&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Inventor&lt;/SPAN&gt;.&lt;SPAN&gt;PartDocument&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveDocument&lt;/SPAN&gt;
&lt;SPAN&gt;' Get part component definition&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oCompDef&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Inventor&lt;/SPAN&gt;.&lt;SPAN&gt;PartComponentDefinition&lt;/SPAN&gt; = &lt;SPAN&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;
&lt;SPAN&gt;' Create a new object collection&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oColl&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Inventor&lt;/SPAN&gt;.&lt;SPAN&gt;ObjectCollection&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;TransientObjects&lt;/SPAN&gt;.&lt;SPAN&gt;CreateObjectCollection&lt;/SPAN&gt;
&lt;SPAN&gt;' Set the found flag for the feature&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;bFound&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Boolean&lt;/SPAN&gt; = &lt;SPAN&gt;False&lt;/SPAN&gt;

&lt;SPAN&gt;' Iterate through all features&lt;/SPAN&gt;
&lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;oFeature&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Inventor&lt;/SPAN&gt;.&lt;SPAN&gt;PartFeature&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;oCompDef&lt;/SPAN&gt;.&lt;SPAN&gt;Features&lt;/SPAN&gt;
	&lt;SPAN&gt;' Check feature name matches&lt;/SPAN&gt;
	&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;oFeature&lt;/SPAN&gt;.&lt;SPAN&gt;Name&lt;/SPAN&gt; = &lt;SPAN&gt;"Extrusion1"&lt;/SPAN&gt; &lt;SPAN&gt;Then&lt;/SPAN&gt;
		&lt;SPAN&gt;' Add to collection &amp;amp; set the flag&lt;/SPAN&gt;
		&lt;SPAN&gt;oColl&lt;/SPAN&gt;.&lt;SPAN&gt;Add&lt;/SPAN&gt;(&lt;SPAN&gt;oFeature&lt;/SPAN&gt;)
		&lt;SPAN&gt;bFound&lt;/SPAN&gt; = &lt;SPAN&gt;True&lt;/SPAN&gt;
	&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;
&lt;SPAN&gt;Next&lt;/SPAN&gt;

&lt;SPAN&gt;' Feature wan't found so exit&lt;/SPAN&gt;
&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;Not&lt;/SPAN&gt; &lt;SPAN&gt;bFound&lt;/SPAN&gt; &lt;SPAN&gt;Then&lt;/SPAN&gt;
	&lt;SPAN&gt;MessageBox&lt;/SPAN&gt;.&lt;SPAN&gt;Show&lt;/SPAN&gt;(&lt;SPAN&gt;"The target feature was not found"&lt;/SPAN&gt;)
	&lt;SPAN&gt;Exit&lt;/SPAN&gt; &lt;SPAN&gt;Sub&lt;/SPAN&gt;
&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;

&lt;SPAN&gt;' Reset Flag&lt;/SPAN&gt;
&lt;SPAN&gt;bFound&lt;/SPAN&gt; = &lt;SPAN&gt;False&lt;/SPAN&gt;

&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oWA&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Inventor&lt;/SPAN&gt;.&lt;SPAN&gt;WorkAxis&lt;/SPAN&gt;
&lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;oWA&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;oCompDef&lt;/SPAN&gt;.&lt;SPAN&gt;WorkAxes&lt;/SPAN&gt;
	&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;oWA&lt;/SPAN&gt;.&lt;SPAN&gt;Name&lt;/SPAN&gt; = &lt;SPAN&gt;"Z Axis"&lt;/SPAN&gt; &lt;SPAN&gt;Then&lt;/SPAN&gt;
		&lt;SPAN&gt;bFound&lt;/SPAN&gt; = &lt;SPAN&gt;True&lt;/SPAN&gt;
		&lt;SPAN&gt;Exit&lt;/SPAN&gt; &lt;SPAN&gt;For&lt;/SPAN&gt;
	&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;
&lt;SPAN&gt;Next&lt;/SPAN&gt; &lt;SPAN&gt;' Next axis&lt;/SPAN&gt;

&lt;SPAN&gt;' Feature wan't found so exit&lt;/SPAN&gt;
&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;Not&lt;/SPAN&gt; &lt;SPAN&gt;bFound&lt;/SPAN&gt; &lt;SPAN&gt;Then&lt;/SPAN&gt;
	&lt;SPAN&gt;MessageBox&lt;/SPAN&gt;.&lt;SPAN&gt;Show&lt;/SPAN&gt;(&lt;SPAN&gt;"The target axis was not found"&lt;/SPAN&gt;)
	&lt;SPAN&gt;Exit&lt;/SPAN&gt; &lt;SPAN&gt;Sub&lt;/SPAN&gt;
&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;

&lt;SPAN&gt;' Set Angle&lt;/SPAN&gt;
&lt;SPAN&gt;oDeg&lt;/SPAN&gt; = &lt;SPAN&gt;"180 deg"&lt;/SPAN&gt;

&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oCPFDef&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Inventor&lt;/SPAN&gt;.&lt;SPAN&gt;CircularPatternFeatureDefinition&lt;/SPAN&gt; = &lt;SPAN&gt;oCompDef&lt;/SPAN&gt;.&lt;SPAN&gt;Features&lt;/SPAN&gt;.&lt;SPAN&gt;CircularPatternFeatures&lt;/SPAN&gt;.&lt;SPAN&gt;CreateDefinition&lt;/SPAN&gt;(&lt;SPAN&gt;oColl&lt;/SPAN&gt;, &lt;SPAN&gt;oWA&lt;/SPAN&gt;, &lt;SPAN&gt;True&lt;/SPAN&gt;, 2, &lt;SPAN&gt;oDeg&lt;/SPAN&gt;, &lt;SPAN&gt;False&lt;/SPAN&gt;)
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oCPF&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Inventor&lt;/SPAN&gt;.&lt;SPAN&gt;CircularPatternFeature&lt;/SPAN&gt; = &lt;SPAN&gt;oCompDef&lt;/SPAN&gt;.&lt;SPAN&gt;Features&lt;/SPAN&gt;.&lt;SPAN&gt;CircularPatternFeatures&lt;/SPAN&gt;.&lt;SPAN&gt;AddByDefinition&lt;/SPAN&gt;(&lt;SPAN&gt;oCPFDef&lt;/SPAN&gt;)

&lt;SPAN&gt;' Get the angle parameter and fix (due to bug) - Angle is always item 1&lt;/SPAN&gt;
&lt;SPAN&gt;oCPF&lt;/SPAN&gt;.&lt;SPAN&gt;Parameters&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(1).&lt;SPAN&gt;Expression&lt;/SPAN&gt; = &lt;SPAN&gt;oDeg&lt;/SPAN&gt;

&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Feb 2021 12:16:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/create-circular-pattern-in-assembly/m-p/10110906#M52793</guid>
      <dc:creator>matt_jlt</dc:creator>
      <dc:date>2021-02-25T12:16:06Z</dc:date>
    </item>
    <item>
      <title>Re: Create circular pattern in assembly</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/create-circular-pattern-in-assembly/m-p/10111206#M52794</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry, I got this error.&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="error.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/885465i75C457B07C6847FA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="error.png" alt="error.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have attach files.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Feb 2021 14:17:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/create-circular-pattern-in-assembly/m-p/10111206#M52794</guid>
      <dc:creator>jedQB94J</dc:creator>
      <dc:date>2021-02-25T14:17:35Z</dc:date>
    </item>
    <item>
      <title>Re: Create circular pattern in assembly</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/create-circular-pattern-in-assembly/m-p/10119635#M52795</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/8472886"&gt;@jedQB94J&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The reason you are getting an error because you are trying to run the code provided by&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/402494"&gt;@matt_jlt&lt;/a&gt;&amp;nbsp;in an assembly document, the code is only applicable for the part document.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Another thing, I have seen in the snapshot you have provided in the question is that you are trying to pattern a feature named "Extrusion1" using code, but it is not inside the assembly, can you please be more specific? whether you are trying to pattern a feature that is inside a part file? or you already have a feature created inside the assembly and you want to pattern it?&amp;nbsp; Or you want to pattern any part located in the assembly?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please try to explain and you will get more elaborative help here.&lt;/P&gt;</description>
      <pubDate>Mon, 01 Mar 2021 05:58:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/create-circular-pattern-in-assembly/m-p/10119635#M52795</guid>
      <dc:creator>dutt.thakar</dc:creator>
      <dc:date>2021-03-01T05:58:02Z</dc:date>
    </item>
    <item>
      <title>Re: Create circular pattern in assembly</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/create-circular-pattern-in-assembly/m-p/10121367#M52796</link>
      <description>&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6518271"&gt;@dutt.thakar&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What i want is &lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;search&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&amp;nbsp; in the explore tree for parts in assembly, then create a circular pattern around "Y-axis" instance of 2 in 180 deg.&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="circular pattern.PNG" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/887133iAFEE620478763FF4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="circular pattern.PNG" alt="circular pattern.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The "Skeleton" part should not be patterned.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;</description>
      <pubDate>Mon, 01 Mar 2021 18:31:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/create-circular-pattern-in-assembly/m-p/10121367#M52796</guid>
      <dc:creator>jedQB94J</dc:creator>
      <dc:date>2021-03-01T18:31:34Z</dc:date>
    </item>
  </channel>
</rss>

