<?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: How to determine collection point on ARC or circle in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/how-to-determine-collection-point-on-arc-or-circle/m-p/4804961#M45465</link>
    <description>&lt;P&gt;Yes, i can get 3 point(start,point,middle) but if i want to get any more point in arc. How can i do that. thanks for your help.&lt;/P&gt;</description>
    <pubDate>Mon, 10 Feb 2014 10:58:50 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2014-02-10T10:58:50Z</dc:date>
    <item>
      <title>How to determine collection point on ARC or circle</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-determine-collection-point-on-arc-or-circle/m-p/4804521#M45463</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I have 1 problem, hope everybody can help me. This is, I have 1 arc and now i want to get all point on this arc.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have attached image.&lt;/P&gt;</description>
      <pubDate>Mon, 10 Feb 2014 06:37:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-determine-collection-point-on-arc-or-circle/m-p/4804521#M45463</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-02-10T06:37:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine collection point on ARC or circle</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-determine-collection-point-on-arc-or-circle/m-p/4804823#M45464</link>
      <description>HI,&lt;BR /&gt;Usually an arc consists of 3 points. Start, Center and End point. But from your picture it seems like that there is more than 3 points. can you clarify more regarding your problem?</description>
      <pubDate>Mon, 10 Feb 2014 09:27:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-determine-collection-point-on-arc-or-circle/m-p/4804823#M45464</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-02-10T09:27:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine collection point on ARC or circle</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-determine-collection-point-on-arc-or-circle/m-p/4804961#M45465</link>
      <description>&lt;P&gt;Yes, i can get 3 point(start,point,middle) but if i want to get any more point in arc. How can i do that. thanks for your help.&lt;/P&gt;</description>
      <pubDate>Mon, 10 Feb 2014 10:58:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-determine-collection-point-on-arc-or-circle/m-p/4804961#M45465</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-02-10T10:58:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine collection point on ARC or circle</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-determine-collection-point-on-arc-or-circle/m-p/4805645#M45466</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;An arc is a curve class derived, so you can get points on the arc with something like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;dim sp,ep as double
dim dp as double= 0.1 '&amp;lt;--Set this var to any value in order to obtain dense or sparse points
dim ds as double
dim pcoll as new pointcollection3d

sp=MyArc.StartParam
ep=MyArc.EndParam
ds=sp

Do While ds &amp;lt;= ep
 pcoll.add(Myarc.GetPointAtParam(ds)
 ds=ds+dp
Loop

&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gaston Nunez&lt;/P&gt;</description>
      <pubDate>Mon, 10 Feb 2014 15:30:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-determine-collection-point-on-arc-or-circle/m-p/4805645#M45466</guid>
      <dc:creator>hgasty1001</dc:creator>
      <dc:date>2014-02-10T15:30:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine collection point on ARC or circle</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-determine-collection-point-on-arc-or-circle/m-p/4805839#M45467</link>
      <description>&lt;P&gt;Additionally, you could use GetPointAtDist(double distance) - depending on your exact needs.&lt;/P&gt;</description>
      <pubDate>Mon, 10 Feb 2014 16:20:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-determine-collection-point-on-arc-or-circle/m-p/4805839#M45467</guid>
      <dc:creator>absStructural</dc:creator>
      <dc:date>2014-02-10T16:20:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine collection point on ARC or circle</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-determine-collection-point-on-arc-or-circle/m-p/4807063#M45468</link>
      <description>&lt;P&gt;thanks so much&lt;/P&gt;</description>
      <pubDate>Tue, 11 Feb 2014 02:16:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-determine-collection-point-on-arc-or-circle/m-p/4807063#M45468</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-02-11T02:16:08Z</dc:date>
    </item>
  </channel>
</rss>

