<?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 calculate start angle and end angle in ARC for DXF file ? in AutoCAD Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-forum/how-to-calculate-start-angle-and-end-angle-in-arc-for-dxf-file/m-p/11683433#M92089</link>
    <description>&lt;P&gt;I know that this is an old post.&lt;/P&gt;
&lt;P&gt;3D Arcs are not AutoCAD entities. Thus, they are not supported in DXF.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Mathematically an ellipse is a conic section viewed perpendicular to the cutting plane. The ellipse's projection is circular when viewed along the cone's axis.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In that context, with respect to a plane perpendicular to the conic axis, a partial segment of an ellipse would be a 3D arc. These do not exist as AutoCAD entities.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Civil 3D Feature Lines can include 3D arcs. When converted to AutoCAD 3D Polylines, the circular arc sections are approximated by short straight-line segments. (Tessellation.)&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ChrisRS_0-1673899091156.png" style="width: 711px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1163377iB1D6C3E962D94655/image-dimensions/711x868?v=v2" width="711" height="868" role="button" title="ChrisRS_0-1673899091156.png" alt="ChrisRS_0-1673899091156.png" /&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>Mon, 16 Jan 2023 20:05:10 GMT</pubDate>
    <dc:creator>ChrisRS</dc:creator>
    <dc:date>2023-01-16T20:05:10Z</dc:date>
    <item>
      <title>How to calculate start angle and end angle in ARC for DXF file ?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-calculate-start-angle-and-end-angle-in-arc-for-dxf-file/m-p/9855795#M92086</link>
      <description>&lt;P&gt;I am writing a software to generate simple 3D model from point cloud, output of which is also to be exported as DXF. Got struck with the 3D ARC generation in DXF format.&lt;/P&gt;&lt;P&gt;I have three 3D points (P1&amp;lt;x1,y1,z1&amp;gt; ; P2&amp;lt;x2,y2,z2&amp;gt; ; P3&amp;lt;x3,y3,z3&amp;gt;) with which I have to generate ARC and store it in DXF format. So far I am able to generate coordinates for Center (Code : 10,20,30 ), Radius (Code : 40), Extrusion Vector (Code: 210, 220, 230). But not able to find or develop mathematics for start angle and end angle for arc (Code: 50, 51).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help me to understand the mathematics behind generating Start and End Angle for ARC.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;P.S. I am very new to CAD world.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Yash&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Nov 2020 13:13:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-calculate-start-angle-and-end-angle-in-arc-for-dxf-file/m-p/9855795#M92086</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-09T13:13:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate start angle and end angle in ARC for DXF file ?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-calculate-start-angle-and-end-angle-in-arc-for-dxf-file/m-p/9855842#M92087</link>
      <description>&lt;P&gt;&lt;A href="http://help.autodesk.com/view/ACD/2021/ENU/?guid=GUID-0B14D8F1-0EBA-44BF-9108-57D8CE614BC8" target="_blank" rel="noopener"&gt;ARC DXF&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://help.autodesk.com/view/ACD/2021/ENU/?guid=GUID-0B14D8F1-0EBA-44BF-9108-57D8CE614BC8" target="_blank" rel="noopener"&gt;http://help.autodesk.com/view/ACD/2021/ENU/?guid=GUID-0B14D8F1-0EBA-44BF-9108-57D8CE614BC8&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;50 is start-angle (of a full circle, angle 0 is in east direction in your ocs/210,220,230)&lt;/P&gt;
&lt;P&gt;51 is end-angle&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;between 50 and 51 you see the ARC, both values are stored es radian, so PI is a half circle.&lt;/P&gt;
&lt;P&gt;An ARC from 1.57079.. (/ pi 2)&lt;/P&gt;
&lt;P&gt;to 3.141592... (pi)&lt;/P&gt;
&lt;P&gt;is drawn from North to West (1/4 circle)&lt;/P&gt;</description>
      <pubDate>Mon, 09 Nov 2020 13:32:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-calculate-start-angle-and-end-angle-in-arc-for-dxf-file/m-p/9855842#M92087</guid>
      <dc:creator>cadffm</dc:creator>
      <dc:date>2020-11-09T13:32:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate start angle and end angle in ARC for DXF file ?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-calculate-start-angle-and-end-angle-in-arc-for-dxf-file/m-p/9855857#M92088</link>
      <description>&lt;P&gt;Thanks for the reply, But my question is exactly this, with three 3D coordinates how to calculate values for start angle and end angle (Code 50, 51). I want to know the mathematics behind this.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Nov 2020 13:39:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-calculate-start-angle-and-end-angle-in-arc-for-dxf-file/m-p/9855857#M92088</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-09T13:39:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate start angle and end angle in ARC for DXF file ?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-calculate-start-angle-and-end-angle-in-arc-for-dxf-file/m-p/11683433#M92089</link>
      <description>&lt;P&gt;I know that this is an old post.&lt;/P&gt;
&lt;P&gt;3D Arcs are not AutoCAD entities. Thus, they are not supported in DXF.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Mathematically an ellipse is a conic section viewed perpendicular to the cutting plane. The ellipse's projection is circular when viewed along the cone's axis.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In that context, with respect to a plane perpendicular to the conic axis, a partial segment of an ellipse would be a 3D arc. These do not exist as AutoCAD entities.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Civil 3D Feature Lines can include 3D arcs. When converted to AutoCAD 3D Polylines, the circular arc sections are approximated by short straight-line segments. (Tessellation.)&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ChrisRS_0-1673899091156.png" style="width: 711px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1163377iB1D6C3E962D94655/image-dimensions/711x868?v=v2" width="711" height="868" role="button" title="ChrisRS_0-1673899091156.png" alt="ChrisRS_0-1673899091156.png" /&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>Mon, 16 Jan 2023 20:05:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-calculate-start-angle-and-end-angle-in-arc-for-dxf-file/m-p/11683433#M92089</guid>
      <dc:creator>ChrisRS</dc:creator>
      <dc:date>2023-01-16T20:05:10Z</dc:date>
    </item>
  </channel>
</rss>

