<?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: C# Draw Arc with 3 points in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/c-draw-arc-with-3-points/m-p/2170746#M75683</link>
    <description>Thank you so much, Jason&lt;BR /&gt;
I'm a Programmer and I'm just starting to learn more about Programming for AutoCAD.&lt;BR /&gt;
&lt;BR /&gt;
Is there a better way to Program for AutoCAD rather than using COM interop, I saw some Database work like Commit() ,and Stuff? I tried looking at samples it all make sense but I always get FILENOTFOUND Execption just if I used anything in these NameSpaces:&lt;BR /&gt;
 Autodesk.AutoCAD.Geometry&lt;BR /&gt;
 Autodesk.AutoCAD.DatabaseServices&lt;BR /&gt;
Although I added the  2references:&lt;BR /&gt;
acdbmgd.dll&lt;BR /&gt;
acmgd.dll&lt;BR /&gt;
&lt;BR /&gt;
Any Tips?&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Thanx again for your Help :)

Message was edited by: Newbie1221</description>
    <pubDate>Mon, 04 Feb 2008 21:53:37 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2008-02-04T21:53:37Z</dc:date>
    <item>
      <title>C# Draw Arc with 3 points</title>
      <link>https://forums.autodesk.com/t5/net-forum/c-draw-arc-with-3-points/m-p/2170741#M75678</link>
      <description>please help me, I'm trying to find a way to draw an Arc with 3 points but i can't.&lt;BR /&gt;
&lt;BR /&gt;
here is parth of the code, (AddArc) method  only accepts starting angle, end angle, radius, center point&lt;BR /&gt;
I want to enter 3 points that define the Arc&lt;BR /&gt;
&lt;BR /&gt;
AcadModelSpace mod;&lt;BR /&gt;
mod.AddArc(p1, 23.4, 0, 180);&lt;BR /&gt;
&lt;BR /&gt;
please Help&lt;BR /&gt;
Thank you</description>
      <pubDate>Sun, 03 Feb 2008 20:56:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/c-draw-arc-with-3-points/m-p/2170741#M75678</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-02-03T20:56:38Z</dc:date>
    </item>
    <item>
      <title>Re: C# Draw Arc with 3 points</title>
      <link>https://forums.autodesk.com/t5/net-forum/c-draw-arc-with-3-points/m-p/2170742#M75679</link>
      <description>Since you are using COM interop I would suggest you visit the VBA forums for help in the future.&lt;BR /&gt;
&lt;BR /&gt;
To answer your question, you could use the AutoCad command prompt using SendCommand() but I would advise against it (unless you absolutely have to).&lt;BR /&gt;
&lt;BR /&gt;
If the addarc() function only takes those 3 arguments, you will probably have no choice but to calculate what those three arguments should be, and feed them to AutoCad in the manner it expects. You could also create a dummy arc and modify its properties, but again you would need to calculate those said properties on your own (radius, angles, etc...).&lt;BR /&gt;
&lt;BR /&gt;
ie: Calculate your start/end angles, ctr pt, and radius and use those to define your arc in the format that AutoCad expects. If you do not want to handle the math, you will have to send text to the AutoCad command line through a script.</description>
      <pubDate>Mon, 04 Feb 2008 19:16:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/c-draw-arc-with-3-points/m-p/2170742#M75679</guid>
      <dc:creator>jbooth</dc:creator>
      <dc:date>2008-02-04T19:16:06Z</dc:date>
    </item>
    <item>
      <title>Re: C# Draw Arc with 3 points</title>
      <link>https://forums.autodesk.com/t5/net-forum/c-draw-arc-with-3-points/m-p/2170743#M75680</link>
      <description>Hi Jason,&lt;BR /&gt;
&lt;BR /&gt;
What is the point of a poster using .NET with the COM interop trying to get &lt;BR /&gt;
help in the VBA newsgroup?  Users there will see C# and refer them back &lt;BR /&gt;
here.  This is the NG for programming using .NET and should be so regardless &lt;BR /&gt;
of the methods used within .NET&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Regards&lt;BR /&gt;
&lt;BR /&gt;
Laurie Comerford&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;JASON booth=""&gt; wrote in message news:5838476@discussion.autodesk.com...&lt;BR /&gt;
Since you are using COM interop I would suggest you visit the VBA forums for &lt;BR /&gt;
help in the future.&lt;BR /&gt;
&lt;BR /&gt;
To answer your question, you could use the AutoCad command prompt using &lt;BR /&gt;
SendCommand() but I would advise against it (unless you absolutely have to).&lt;BR /&gt;
&lt;BR /&gt;
If the addarc() function only takes those 3 arguments, you will probably &lt;BR /&gt;
have no choice but to calculate what those three arguments should be, and &lt;BR /&gt;
feed them to AutoCad in the manner it expects. You could also create a dummy &lt;BR /&gt;
arc and modify its properties, but again you would need to calculate those &lt;BR /&gt;
said properties on your own (radius, angles, etc...).&lt;BR /&gt;
&lt;BR /&gt;
ie: Calculate your start/end angles, ctr pt, and radius and use those to &lt;BR /&gt;
define your arc in the format that AutoCad expects. If you do not want to &lt;BR /&gt;
handle the math, you will have to send text to the AutoCad command line &lt;BR /&gt;
through a script.&lt;/JASON&gt;</description>
      <pubDate>Mon, 04 Feb 2008 20:17:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/c-draw-arc-with-3-points/m-p/2170743#M75680</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-02-04T20:17:05Z</dc:date>
    </item>
    <item>
      <title>Re: C# Draw Arc with 3 points</title>
      <link>https://forums.autodesk.com/t5/net-forum/c-draw-arc-with-3-points/m-p/2170744#M75681</link>
      <description>I didn't notice right away that his sample code was in C#.&lt;BR /&gt;
&lt;BR /&gt;
However, on that subject, the other forum has much more info about the COM API that directly applies to questions like these. Most of the knowledge here seems to be biased towards the ObjectArx .NET libraries instead. Therefore the VBA forums is still a better place to look when interacting with the COM library, even when you need to translate any solutions you find into C#.&lt;BR /&gt;
&lt;BR /&gt;
My comment was not meant to be a "stay out of this forum" post. It was more of a "here is better place to search for a solution".&lt;BR /&gt;
&lt;BR /&gt;
ps: You like jumping on people, don't you?</description>
      <pubDate>Mon, 04 Feb 2008 20:51:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/c-draw-arc-with-3-points/m-p/2170744#M75681</guid>
      <dc:creator>jbooth</dc:creator>
      <dc:date>2008-02-04T20:51:00Z</dc:date>
    </item>
    <item>
      <title>Re: C# Draw Arc with 3 points</title>
      <link>https://forums.autodesk.com/t5/net-forum/c-draw-arc-with-3-points/m-p/2170745#M75682</link>
      <description>It's all about the API. All users in the VBA group use the ActiveX API. This includes VB6 and Delphi (have you ever told them to get lost) users. The users in this group predominantly use the .NET API. Therefore the OP might be more likely to get help in the VBA group if the users can see past the language he is using.&lt;BR /&gt;
&lt;BR /&gt;
In this group there are both VB.NET &amp;amp; C# users using the .NET API . The fact they are using different languages has not stopped them help each other on the real purpose of this group the .NET API.</description>
      <pubDate>Mon, 04 Feb 2008 21:22:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/c-draw-arc-with-3-points/m-p/2170745#M75682</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-02-04T21:22:57Z</dc:date>
    </item>
    <item>
      <title>Re: C# Draw Arc with 3 points</title>
      <link>https://forums.autodesk.com/t5/net-forum/c-draw-arc-with-3-points/m-p/2170746#M75683</link>
      <description>Thank you so much, Jason&lt;BR /&gt;
I'm a Programmer and I'm just starting to learn more about Programming for AutoCAD.&lt;BR /&gt;
&lt;BR /&gt;
Is there a better way to Program for AutoCAD rather than using COM interop, I saw some Database work like Commit() ,and Stuff? I tried looking at samples it all make sense but I always get FILENOTFOUND Execption just if I used anything in these NameSpaces:&lt;BR /&gt;
 Autodesk.AutoCAD.Geometry&lt;BR /&gt;
 Autodesk.AutoCAD.DatabaseServices&lt;BR /&gt;
Although I added the  2references:&lt;BR /&gt;
acdbmgd.dll&lt;BR /&gt;
acmgd.dll&lt;BR /&gt;
&lt;BR /&gt;
Any Tips?&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Thanx again for your Help :)

Message was edited by: Newbie1221</description>
      <pubDate>Mon, 04 Feb 2008 21:53:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/c-draw-arc-with-3-points/m-p/2170746#M75683</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-02-04T21:53:37Z</dc:date>
    </item>
    <item>
      <title>Re: C# Draw Arc with 3 points</title>
      <link>https://forums.autodesk.com/t5/net-forum/c-draw-arc-with-3-points/m-p/2170747#M75684</link>
      <description>2005 had a very limited .NET API. If you have 2006 onwards checkout http://through-the-interface.typepad.com/through_the_interface/2007/11/devtv-introduct.html</description>
      <pubDate>Mon, 04 Feb 2008 22:01:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/c-draw-arc-with-3-points/m-p/2170747#M75684</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-02-04T22:01:13Z</dc:date>
    </item>
    <item>
      <title>Re: C# Draw Arc with 3 points</title>
      <link>https://forums.autodesk.com/t5/net-forum/c-draw-arc-with-3-points/m-p/2170748#M75685</link>
      <description>http://usa.autodesk.com/adsk/servlet/index?id=1911627&amp;amp;siteID=123112&lt;BR /&gt;
&lt;BR /&gt;
There should be links to documentation directly related to programming with the .NET arx API. Also look at the C++ documentation for ObjectArx, as I think there were some .NET samples hidden in the package you can download.&lt;BR /&gt;
&lt;BR /&gt;
Also, Nathan is right about the "Through the interface" blogs. They have some great info.&lt;BR /&gt;
&lt;BR /&gt;
As a last resort, you can search these forums.. The posts about how to set up a project that uses the arx.NET API are old, but they should still be here (they are what I used to get started).&lt;BR /&gt;
&lt;BR /&gt;
Good luck.</description>
      <pubDate>Mon, 04 Feb 2008 22:49:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/c-draw-arc-with-3-points/m-p/2170748#M75685</guid>
      <dc:creator>jbooth</dc:creator>
      <dc:date>2008-02-04T22:49:41Z</dc:date>
    </item>
    <item>
      <title>Re: C# Draw Arc with 3 points</title>
      <link>https://forums.autodesk.com/t5/net-forum/c-draw-arc-with-3-points/m-p/2170749#M75686</link>
      <description>Thank you all for the tips, Indeed those were very helpful :))</description>
      <pubDate>Mon, 04 Feb 2008 23:52:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/c-draw-arc-with-3-points/m-p/2170749#M75686</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-02-04T23:52:15Z</dc:date>
    </item>
    <item>
      <title>Re: C# Draw Arc with 3 points</title>
      <link>https://forums.autodesk.com/t5/net-forum/c-draw-arc-with-3-points/m-p/2170750#M75687</link>
      <description>If you want to use the managed API (which means that you are building a NETLOAD-able DLL, not an .EXE), this is probably the easiest way to do what you need, without having to do the geometry calculations:&lt;BR /&gt;
&lt;BR /&gt;
Using Autodesk.AutoCAD.Geometry;&lt;BR /&gt;
&lt;BR /&gt;
Point3d startPoint =   //... start point of the arc&lt;BR /&gt;
Point3d pointOnArc = //... any point on the arc segment&lt;BR /&gt;
Point3d endPoint =    //... end point of the arc&lt;BR /&gt;
&lt;BR /&gt;
CircularArc3d arc = new CircularArc3d( startPoint, pointOnArc, endPoint );&lt;BR /&gt;
&lt;BR /&gt;
From there, you can query the properties of the CircularArc3d for its center, radius, and start/end angles, and use them to create an Arc entity.&lt;BR /&gt;
&lt;BR /&gt;
If you've never used the managed ObjectARX API before, then be forewarned that it is not easy to learn (it can take years to learn it to the extent needed to develop real applications). &lt;BR /&gt;
&lt;BR /&gt;
You can ease your way into the managed API gradually by using it in conjunction with ActiveX (your problem is a good example of that, because you can create the ARC through ActiveX, but use the managed API to do the needed calculations).&lt;BR /&gt;
&lt;BR /&gt;
And contrary to what Laurie says, we generally don't link programming languages to APIs here. This newsgroup focuses mainly on using the managed ObjectARX API without regard for langauge. For ActiveX, your best bet is the VBA newsgroup because syntax differences aside, the API is the same regardless of what langauge you use.  &lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2008&lt;BR /&gt;
Supporting AutoCAD 2000 through 2008&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
&lt;NEWBIE1221&gt; wrote in message news:5838744@discussion.autodesk.com...&lt;BR /&gt;
Thank you all for the tips, Indeed those were very helpful :))&lt;/NEWBIE1221&gt;</description>
      <pubDate>Tue, 05 Feb 2008 01:15:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/c-draw-arc-with-3-points/m-p/2170750#M75687</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-02-05T01:15:28Z</dc:date>
    </item>
    <item>
      <title>Re: C# Draw Arc with 3 points</title>
      <link>https://forums.autodesk.com/t5/net-forum/c-draw-arc-with-3-points/m-p/2170751#M75688</link>
      <description>Thanx Tony &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;</description>
      <pubDate>Tue, 05 Feb 2008 01:52:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/c-draw-arc-with-3-points/m-p/2170751#M75688</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-02-05T01:52:24Z</dc:date>
    </item>
    <item>
      <title>Re: C# Draw Arc with 3 points</title>
      <link>https://forums.autodesk.com/t5/net-forum/c-draw-arc-with-3-points/m-p/2170752#M75689</link>
      <description>My Lord! Jason. It's in the subject line, as clear as day.&lt;BR /&gt;
&lt;BR /&gt;
Seriously, how much weight do you expect your replies to carry when it's blatantly obvious that you're to lazy to even read a simple sentence? No, go on, tell me? How much?&lt;BR /&gt;
&lt;BR /&gt;
You say 'seems'. So you don't really know, do you?&lt;BR /&gt;
I think our just jumping on a bandwagon the Nathan seems to be driving. Step back off it.&lt;BR /&gt;
&lt;BR /&gt;
P.S. Yes. i am jumping on you. With boots on.&lt;BR /&gt;
&lt;BR /&gt;
Dave F.</description>
      <pubDate>Sun, 02 Mar 2008 23:17:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/c-draw-arc-with-3-points/m-p/2170752#M75689</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-03-02T23:17:27Z</dc:date>
    </item>
    <item>
      <title>Re: C# Draw Arc with 3 points</title>
      <link>https://forums.autodesk.com/t5/net-forum/c-draw-arc-with-3-points/m-p/2170753#M75690</link>
      <description>I'm not driving any bandwagon just pointing out facts in response to Laurie's bandwagon. You seem to have nothing intelligent to add (do you ever?) so you go mental over a simple thing as not reading a title. How much weight can we hold to your posts if you are that small of a man? No, go on, tell me? How much?</description>
      <pubDate>Sun, 02 Mar 2008 23:33:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/c-draw-arc-with-3-points/m-p/2170753#M75690</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-03-02T23:33:12Z</dc:date>
    </item>
    <item>
      <title>Re: C# Draw Arc with 3 points</title>
      <link>https://forums.autodesk.com/t5/net-forum/c-draw-arc-with-3-points/m-p/2170754#M75691</link>
      <description>Nathan Taylor wrote:&lt;BR /&gt;
&amp;gt; I'm not driving any bandwagon just pointing out facts in response to Laurie's bandwagon.&lt;BR /&gt;
&lt;BR /&gt;
&amp;gt;You seem to have nothing intelligent to add (do you ever?) &lt;BR /&gt;
Occasionally.&lt;BR /&gt;
&amp;gt;so you go mental over a simple thing as not reading a title.&lt;BR /&gt;
&amp;gt;How much weight can we hold to your posts if you are that small of a man? &lt;BR /&gt;
 &amp;gt;No, go on, tell me? How much?&lt;BR /&gt;
&lt;BR /&gt;
I've never, repeat never, _expect_ my posts to carry any weight. I'll leave that to the arrogance of others. I simply reply to questions I know the &lt;BR /&gt;
answers too. After I've read the question of course.&lt;BR /&gt;
&lt;BR /&gt;
I get irritated by the time I (&amp;amp; others) have wasted whilst learning how to program by taking 'advice' from lazy posters who think they know it all, &lt;BR /&gt;
but can't even be bothered to take the time to read the actual problem. Such as what's typed in the subject line.&lt;BR /&gt;
&lt;BR /&gt;
Failing to do so fully, is just plain rude.&lt;BR /&gt;
&lt;BR /&gt;
Dave F.</description>
      <pubDate>Mon, 03 Mar 2008 01:24:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/c-draw-arc-with-3-points/m-p/2170754#M75691</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-03-03T01:24:27Z</dc:date>
    </item>
    <item>
      <title>Re: C# Draw Arc with 3 points</title>
      <link>https://forums.autodesk.com/t5/net-forum/c-draw-arc-with-3-points/m-p/2170755#M75692</link>
      <description>&amp;gt;&amp;gt;Failing to do so fully, is just plain rude.&lt;BR /&gt;
&lt;BR /&gt;
Or possibly an oversight with absolutely no intention of being rude unlike you.</description>
      <pubDate>Mon, 03 Mar 2008 01:31:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/c-draw-arc-with-3-points/m-p/2170755#M75692</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-03-03T01:31:27Z</dc:date>
    </item>
    <item>
      <title>Re: C# Draw Arc with 3 points</title>
      <link>https://forums.autodesk.com/t5/net-forum/c-draw-arc-with-3-points/m-p/2170756#M75693</link>
      <description>Here is thee working code:&lt;BR /&gt;
&lt;BR /&gt;
    Public Shared Sub DrawArc3Points()&lt;BR /&gt;
        Dim doc As Document = AcApp.DocumentManager.MdiActiveDocument&lt;BR /&gt;
        Dim docklock As DocumentLock = doc.LockDocument()&lt;BR /&gt;
        Dim db As Database = HostApplicationServices.WorkingDatabase()&lt;BR /&gt;
        Dim ed As Editor = doc.Editor()&lt;BR /&gt;
        Using tr As Transaction = db.TransactionManager.StartTransaction&lt;BR /&gt;
            Try&lt;BR /&gt;
                Dim p1 As Point3d = ed.GetPoint(ControlChars.CrLf &amp;amp; "Specify first point of an arc (keep the counterclockwise order): ").Value&lt;BR /&gt;
                Dim opt As New PromptPointOptions(ControlChars.CrLf &amp;amp; "Specify second point of an arc:")&lt;BR /&gt;
                opt.AllowNone = False&lt;BR /&gt;
                opt.UseDashedLine = True&lt;BR /&gt;
                opt.BasePoint = p1&lt;BR /&gt;
                Dim p2 As Point3d = ed.GetPoint(opt).Value&lt;BR /&gt;
                opt.BasePoint = p2&lt;BR /&gt;
                opt.Message = ControlChars.CrLf &amp;amp; "Specify last point of an arc: "&lt;BR /&gt;
                Dim p3 As Point3d = ed.GetPoint(opt).Value&lt;BR /&gt;
                Dim carc As CircularArc3d = New CircularArc3d(p1, p2, p3)&lt;BR /&gt;
                Dim arc As Arc = ConvertToArc(carc)&lt;BR /&gt;
                Dim btr As BlockTableRecord = CType(tr.GetObject(db.CurrentSpaceId, OpenMode.ForWrite), BlockTableRecord)&lt;BR /&gt;
                btr.AppendEntity(arc)&lt;BR /&gt;
                tr.AddNewlyCreatedDBObject(arc, True)&lt;BR /&gt;
                tr.Commit()&lt;BR /&gt;
            Catch ex As Autodesk.AutoCAD.Runtime.Exception&lt;BR /&gt;
                MessageBox.Show(ex.StackTrace)&lt;BR /&gt;
            End Try&lt;BR /&gt;
        End Using&lt;BR /&gt;
        docklock.Dispose()&lt;BR /&gt;
    End Sub&lt;BR /&gt;
    Public Shared Function ConvertToArc(ByVal seg As CircularArc3d) As Arc&lt;BR /&gt;
        ' function from:&lt;BR /&gt;
        ' http://through-the-interface.typepad.com/through_the_interface/files/kochize.cs&lt;BR /&gt;
        With seg&lt;BR /&gt;
            Dim cnt As Point3d = .Center&lt;BR /&gt;
            Dim norm As Vector3d = .Normal&lt;BR /&gt;
            Dim vec As Vector3d = .ReferenceVector&lt;BR /&gt;
            Dim pn As Plane = New Plane(cnt, norm)&lt;BR /&gt;
            Dim ang As Double = vec.AngleOnPlane(pn)&lt;BR /&gt;
            Dim rad As Double = .Radius&lt;BR /&gt;
            Dim sa As Double = .StartAngle&lt;BR /&gt;
            Dim ea As Double = .EndAngle&lt;BR /&gt;
            Return New Arc(cnt, norm, rad, sa + ang, ea + ang)&lt;BR /&gt;
        End With&lt;BR /&gt;
    End Function&lt;BR /&gt;
&lt;BR /&gt;
~'J'~</description>
      <pubDate>Mon, 03 Mar 2008 09:34:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/c-draw-arc-with-3-points/m-p/2170756#M75693</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-03-03T09:34:14Z</dc:date>
    </item>
    <item>
      <title>Re: C# Draw Arc with 3 points</title>
      <link>https://forums.autodesk.com/t5/net-forum/c-draw-arc-with-3-points/m-p/2170757#M75694</link>
      <description>1. By reading the original poster's example code, I noticed right away he was using COM interop. Therefore the "VBA" forums would be the better place to look regardless if his final code was in C# or not. Is "seems" not strong enough for you? How about "is". Feel better? Probably not.&lt;BR /&gt;
2. I may rarely post example code, but this is because I do not own the code I write - the company I work for does. I help when I can, but I prefer to help people solve their own problems rather than rely on code posted by random forum users.&lt;BR /&gt;
3. I'm not usually a rude person - in fact in this case if I was rude it was unintentional. You seem to be the first to think so however.&lt;BR /&gt;
4. With regards to the above: If you are as antagonistic as you appear to be, I don't really care what you think.&lt;BR /&gt;
&lt;BR /&gt;
Please make constructive posts in the future instead of trying to make yourself look good by insulting others. I'm pretty sure forum trolling is against this forums' posting guidelines.&lt;BR /&gt;
&lt;BR /&gt;
Thanks.</description>
      <pubDate>Mon, 03 Mar 2008 19:00:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/c-draw-arc-with-3-points/m-p/2170757#M75694</guid>
      <dc:creator>jbooth</dc:creator>
      <dc:date>2008-03-03T19:00:19Z</dc:date>
    </item>
  </channel>
</rss>

