<?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 Rubberbanding a polyline arc in ObjectARX Forum</title>
    <link>https://forums.autodesk.com/t5/objectarx-forum/rubberbanding-a-polyline-arc/m-p/2257060#M19109</link>
    <description>I am trying to display a rubberband when a user creates a 2d arc polyline.  If I use the pline command, I can see the shape that the arc will be when the user selects the second point.  I want to mimic this with ObjectARX and the acedGetPoint command.  &lt;BR /&gt;
&lt;BR /&gt;
Currently I can see the straight rubberband that connects the first point to the second point, but not what the 2d arc will look like.&lt;BR /&gt;
&lt;BR /&gt;
I searched these forums for 'Rubberband' and came up with 5 topics.  I found that I might be able to use a jig, but I think that might be overkill...&lt;BR /&gt;
&lt;BR /&gt;
Is there an easier way to show the arc without using a jig?</description>
    <pubDate>Fri, 16 May 2008 00:05:41 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2008-05-16T00:05:41Z</dc:date>
    <item>
      <title>Rubberbanding a polyline arc</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/rubberbanding-a-polyline-arc/m-p/2257060#M19109</link>
      <description>I am trying to display a rubberband when a user creates a 2d arc polyline.  If I use the pline command, I can see the shape that the arc will be when the user selects the second point.  I want to mimic this with ObjectARX and the acedGetPoint command.  &lt;BR /&gt;
&lt;BR /&gt;
Currently I can see the straight rubberband that connects the first point to the second point, but not what the 2d arc will look like.&lt;BR /&gt;
&lt;BR /&gt;
I searched these forums for 'Rubberband' and came up with 5 topics.  I found that I might be able to use a jig, but I think that might be overkill...&lt;BR /&gt;
&lt;BR /&gt;
Is there an easier way to show the arc without using a jig?</description>
      <pubDate>Fri, 16 May 2008 00:05:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/rubberbanding-a-polyline-arc/m-p/2257060#M19109</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-05-16T00:05:41Z</dc:date>
    </item>
    <item>
      <title>Re: Rubberbanding a polyline arc</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/rubberbanding-a-polyline-arc/m-p/2257061#M19110</link>
      <description>It's either a jig, or AcEdInputPointMonitor.&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 2009&lt;BR /&gt;
Supporting AutoCAD 2000 through 2009&lt;BR /&gt;
&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
Introducing AcadXTabs 2010:&lt;BR /&gt;
http://www.caddzone.com/acadxtabs/AcadXTabs2010.htm&lt;BR /&gt;
&lt;BR /&gt;
&lt;MAPAGE&gt; wrote in message news:5932746@discussion.autodesk.com...&lt;BR /&gt;
I am trying to display a rubberband when a user creates a 2d arc polyline.  If I use the pline command, I can see the shape that the arc will be when the user selects the second point.  I want to mimic this with ObjectARX and the acedGetPoint command.  &lt;BR /&gt;
&lt;BR /&gt;
Currently I can see the straight rubberband that connects the first point to the second point, but not what the 2d arc will look like.&lt;BR /&gt;
&lt;BR /&gt;
I searched these forums for 'Rubberband' and came up with 5 topics.  I found that I might be able to use a jig, but I think that might be overkill...&lt;BR /&gt;
&lt;BR /&gt;
Is there an easier way to show the arc without using a jig?&lt;/MAPAGE&gt;</description>
      <pubDate>Fri, 16 May 2008 02:34:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/rubberbanding-a-polyline-arc/m-p/2257061#M19110</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-05-16T02:34:08Z</dc:date>
    </item>
    <item>
      <title>Re: Rubberbanding a polyline arc</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/rubberbanding-a-polyline-arc/m-p/2257062#M19111</link>
      <description>Thanks for the reply Tony...  I decided to implement the jig approach because I have already done something with the AcEdInputMonitor and want to learn something new.&lt;BR /&gt;
&lt;BR /&gt;
Here is my current problem...  I have modified the ObjectARX sample db_elipsJig (or something like that) and I have 're-created' what I already have.  I can select the start point and I get a rubberband to the end point, but no arc in between the two points.  (or an arc with a bulge of 0.0)&lt;BR /&gt;
&lt;BR /&gt;
Maybe some context would help...  When you create a 2 point Arc with the ACad drawing tools, you get a straight rubberband between the two end points as well as an arc rubberband that represents the arc.  If I create a 2 pt arc in ObjectARX then there is no indicator for the user as to what the arc will look like.  (The 2 point arc can be somewhat chaotic for someone not used to them.)  So I'm trying to make 2 point arc creation more useful for the user.&lt;BR /&gt;
&lt;BR /&gt;
I've looked at the Arc datatypes and none of them appear to be the 2 point type...  At least not that I can make out.  I thought I might be able to 'fake' an arc and then save the polyline with an arc.&lt;BR /&gt;
&lt;BR /&gt;
So...  I can put a bulge in there, but I don't know how the pline command calculates the bulge for a 2 point arc.&lt;BR /&gt;
&lt;BR /&gt;
So...  I guess the question is, "How do I calculate the bulge between two points so that the final arc between the two points matches what autocad would draw with the pline command for the same two points?&lt;BR /&gt;
&lt;BR /&gt;
I'm sorry for being so verbose.  As someone famous once said, "I could have made it shorter if I had more time."  (Or something like that...)&lt;BR /&gt;
&lt;BR /&gt;
Thanks.</description>
      <pubDate>Fri, 16 May 2008 22:25:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/rubberbanding-a-polyline-arc/m-p/2257062#M19111</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-05-16T22:25:53Z</dc:date>
    </item>
  </channel>
</rss>

