<?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 iLogic: Make pattern fit within Length Value in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-make-pattern-fit-within-length-value/m-p/7811571#M81091</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have this conveyor, with hangers on the side, for the sliderail.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The pattern of the hanger, for the sliderail, should not exceed the length, Meaning, if I change the length to 2000mm the pattern adapts accordingly. Right now, they just float in the air.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There a two different hanger distances, depending on the load. 600 and 900mm&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The Length Value is called "Sliderail_Length"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 27 Feb 2018 08:04:57 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-02-27T08:04:57Z</dc:date>
    <item>
      <title>iLogic: Make pattern fit within Length Value</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-make-pattern-fit-within-length-value/m-p/7811571#M81091</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have this conveyor, with hangers on the side, for the sliderail.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The pattern of the hanger, for the sliderail, should not exceed the length, Meaning, if I change the length to 2000mm the pattern adapts accordingly. Right now, they just float in the air.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There a two different hanger distances, depending on the load. 600 and 900mm&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The Length Value is called "Sliderail_Length"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Feb 2018 08:04:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-make-pattern-fit-within-length-value/m-p/7811571#M81091</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-02-27T08:04:57Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic: Make pattern fit within Length Value</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-make-pattern-fit-within-length-value/m-p/7811798#M81094</link>
      <description>&lt;P&gt;In the pattern dialog, set Spacing to Distance&lt;/P&gt;</description>
      <pubDate>Tue, 27 Feb 2018 09:50:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-make-pattern-fit-within-length-value/m-p/7811798#M81094</guid>
      <dc:creator>HermJan.Otterman</dc:creator>
      <dc:date>2018-02-27T09:50:55Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic: Make pattern fit within Length Value</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-make-pattern-fit-within-length-value/m-p/7811852#M81096</link>
      <description>&lt;P&gt;The issue is the amount of hangers needed, depending on the length of the conveyor and hanger distance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The hanger distance&amp;nbsp;can either be 600 mm or 900mm&lt;/P&gt;</description>
      <pubDate>Tue, 27 Feb 2018 10:10:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-make-pattern-fit-within-length-value/m-p/7811852#M81096</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-02-27T10:10:57Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic: Make pattern fit within Length Value</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-make-pattern-fit-within-length-value/m-p/7811878#M81098</link>
      <description>&lt;P&gt;so you need to calculate the maximum of hangers, depending on the length and hangers distance,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;count = floor(Length / hanger_distance)&lt;/P&gt;
&lt;P&gt;(floor will round it down)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;use the count in the pattern&lt;/P&gt;</description>
      <pubDate>Tue, 27 Feb 2018 10:21:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-make-pattern-fit-within-length-value/m-p/7811878#M81098</guid>
      <dc:creator>HermJan.Otterman</dc:creator>
      <dc:date>2018-02-27T10:21:48Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic: Make pattern fit within Length Value</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-make-pattern-fit-within-length-value/m-p/7814664#M81149</link>
      <description>&lt;P&gt;Awesome&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank you!&lt;/P&gt;</description>
      <pubDate>Wed, 28 Feb 2018 06:05:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-make-pattern-fit-within-length-value/m-p/7814664#M81149</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-02-28T06:05:34Z</dc:date>
    </item>
  </channel>
</rss>

