<?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 clockwise arc in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/create-clockwise-arc/m-p/8509160#M23858</link>
    <description>&lt;P&gt;assuming you have a CircularArc2d (ca), you can use the ca.GetLength method.&amp;nbsp; When you create the arc, check that arc length is the same as the ca.getlength result.&amp;nbsp; If it's not, you have to swap arc parameters (start pt, end pt, startangle, and endangle).&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 09 Jan 2019 02:34:40 GMT</pubDate>
    <dc:creator>fieldguy</dc:creator>
    <dc:date>2019-01-09T02:34:40Z</dc:date>
    <item>
      <title>create clockwise arc</title>
      <link>https://forums.autodesk.com/t5/net-forum/create-clockwise-arc/m-p/8508332#M23854</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How can I create a clockwise arc using .NET.&lt;/P&gt;
&lt;P&gt;By default all arcs are drawn counter-clockwise. I need to draw them clockwise as well.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jan 2019 18:51:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/create-clockwise-arc/m-p/8508332#M23854</guid>
      <dc:creator>jwe03</dc:creator>
      <dc:date>2019-01-08T18:51:20Z</dc:date>
    </item>
    <item>
      <title>Re: create clockwise arc</title>
      <link>https://forums.autodesk.com/t5/net-forum/create-clockwise-arc/m-p/8508450#M23855</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you do not provide more details about the the input data uses to create the arc 'clockwise', I'm afraid nobody can really help you (from my part I can't).&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jan 2019 19:37:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/create-clockwise-arc/m-p/8508450#M23855</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2019-01-08T19:37:22Z</dc:date>
    </item>
    <item>
      <title>Re: create clockwise arc</title>
      <link>https://forums.autodesk.com/t5/net-forum/create-clockwise-arc/m-p/8508518#M23856</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/109424"&gt;@_gile&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Basically what I'm trying to do is to convert all arcs in a polyline into segments which can have a maximum length (input by the user). The less this maximum length, the finer are the arcs cut (the more segments generated and the more vertices are added to the polyline).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So while trying the algorithm, i had a problem with arcs in the polyline which go clockwise.&amp;nbsp; I got their start point, endpoint, radius and center (deriving them from the bulge) and then when i&amp;nbsp; created the arc it was always created in the counter clockwise direction.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is why i'm asking if this can be done and if yes, how?&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jan 2019 20:03:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/create-clockwise-arc/m-p/8508518#M23856</guid>
      <dc:creator>jwe03</dc:creator>
      <dc:date>2019-01-08T20:03:27Z</dc:date>
    </item>
    <item>
      <title>Re: create clockwise arc</title>
      <link>https://forums.autodesk.com/t5/net-forum/create-clockwise-arc/m-p/8508778#M23857</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5439984"&gt;@jwe03&lt;/a&gt;&amp;nbsp; написал (-а):&lt;BR /&gt;
&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How can I create a clockwise arc using .NET.&lt;/P&gt;
&lt;P&gt;By default all arcs are drawn counter-clockwise. I need to draw them clockwise as well.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;You can not create clockwise arc, but you can change it normal (for example, from (0 0 1) to (0 0 -1)) and arc will be look as counter-clockwise if view direction is (0 0 1).&amp;nbsp; This result can be achieved by mirroring the arc relative to the bisector of its central angle.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jan 2019 21:56:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/create-clockwise-arc/m-p/8508778#M23857</guid>
      <dc:creator>Alexander.Rivilis</dc:creator>
      <dc:date>2019-01-08T21:56:33Z</dc:date>
    </item>
    <item>
      <title>Re: create clockwise arc</title>
      <link>https://forums.autodesk.com/t5/net-forum/create-clockwise-arc/m-p/8509160#M23858</link>
      <description>&lt;P&gt;assuming you have a CircularArc2d (ca), you can use the ca.GetLength method.&amp;nbsp; When you create the arc, check that arc length is the same as the ca.getlength result.&amp;nbsp; If it's not, you have to swap arc parameters (start pt, end pt, startangle, and endangle).&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Jan 2019 02:34:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/create-clockwise-arc/m-p/8509160#M23858</guid>
      <dc:creator>fieldguy</dc:creator>
      <dc:date>2019-01-09T02:34:40Z</dc:date>
    </item>
  </channel>
</rss>

