<?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: Quick Show Area Tool in ObjectARX Forum</title>
    <link>https://forums.autodesk.com/t5/objectarx-forum/quick-show-area-tool/m-p/9717448#M4146</link>
    <description>&lt;P&gt;I do not post here that often, so did not elaborate at all on my previous post.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I just had the time to do a test, using C# (have been a long time that do not use ARX), anyway.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;TraceBoundary works for me on enclosed areas that include Splines, so on an example made with lines, that form an U shape on one of the ends the edge it is a spline, and inside for islands a rectangle and a circle.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I use TraceBoundary, after the internal point, and true for island detection, returns 3 items, I just go and loop into each of these objects, returns a Region and two Polylines.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For the Region, I use Brep (AcBrBrep) and extract the area with brep.GetSurfaceArea().&lt;/P&gt;&lt;P&gt;For the other two Polylines, I convert them to Curve, then check if are curve.Closed, then I extract their area with curve.Area.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can do this without adding to the database any of the items.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, to me the larger area will be the outer one, any other one returned will be islands, or maybe you can test if the internal point is not inside of any of these islands, but guess it is overhead.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;HTH.-&lt;/P&gt;</description>
    <pubDate>Fri, 28 Aug 2020 14:37:50 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-08-28T14:37:50Z</dc:date>
    <item>
      <title>Quick Show Area Tool</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/quick-show-area-tool/m-p/9690487#M4140</link>
      <description>&lt;P&gt;On a different platform, I created a "Show Area" tool that takes a point input, finds the boundaries around it, creates a temporary hatch, gets the area from that hatch and displays it for the user (deleting the hatch afterwards).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can see that I could perhaps use HATCH or BOUNDARY, and they will give me the areas I want. So to quickly display the area of any enclosed space, I could use a similar approach to avoid 'polluting' the drawing with random hatches or polylines (i.e., use them to get the area then delete them).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just to be sure I'm not missing a trick though - is there a better approach?&lt;/P&gt;</description>
      <pubDate>Thu, 13 Aug 2020 21:35:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/quick-show-area-tool/m-p/9690487#M4140</guid>
      <dc:creator>Kyudos</dc:creator>
      <dc:date>2020-08-13T21:35:12Z</dc:date>
    </item>
    <item>
      <title>Re: Quick Show Area Tool</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/quick-show-area-tool/m-p/9690636#M4141</link>
      <description>&lt;P&gt;Aha!&amp;nbsp;&amp;nbsp;&lt;STRONG&gt;acedTraceBoundary!&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, from the docs:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="Element720"&gt;&lt;DIV class="Element721"&gt;&lt;DIV class="Element58"&gt;&lt;DIV class="Element11"&gt;&lt;DIV class="Element10"&gt;&lt;DIV class="Element252"&gt;&lt;DIV class="TableDiv"&gt;&lt;EM&gt;&lt;STRONG&gt;resultingBoundarySet&lt;/STRONG&gt; Contains the resulting boundary in form of AcDbPolyline* objects, if the operation is completed&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="TableDiv"&gt;&lt;EM&gt;sucessfully. When called with detectIslands set to false, the array contains only one entry, representing the outer&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="TableDiv"&gt;&lt;EM&gt;boundary. When called with detectIslands set to true, the array can contain multiple AcDbPolyline* entries. In this&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="TableDiv"&gt;&lt;EM&gt;case, the first entry is the outermost boundary, and the succeeding entries represent the islands found.&amp;nbsp;&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="TableDiv"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="TableDiv"&gt;This doesn't appear to be the case - the outer boundary always seems to be the last in the array. Is this reliable?&lt;/DIV&gt;&lt;DIV class="TableDiv"&gt;I want to subtract the island area(s) from the total. Can I rely on the outer area always being last, or should I find the largest area&amp;nbsp;and subtract the rest?&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 14 Aug 2020 00:23:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/quick-show-area-tool/m-p/9690636#M4141</guid>
      <dc:creator>Kyudos</dc:creator>
      <dc:date>2020-08-14T00:23:35Z</dc:date>
    </item>
    <item>
      <title>Re: Quick Show Area Tool</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/quick-show-area-tool/m-p/9690659#M4142</link>
      <description>&lt;P&gt;...and further it seems &lt;STRONG&gt;acedTraceBoundary&lt;/STRONG&gt; ignores splines (but BOUNDARY doesn't?)&lt;/P&gt;</description>
      <pubDate>Fri, 14 Aug 2020 00:45:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/quick-show-area-tool/m-p/9690659#M4142</guid>
      <dc:creator>Kyudos</dc:creator>
      <dc:date>2020-08-14T00:45:21Z</dc:date>
    </item>
    <item>
      <title>Re: Quick Show Area Tool</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/quick-show-area-tool/m-p/9694363#M4143</link>
      <description>&lt;P&gt;So this very nearly does what I want - but can&amp;nbsp;&lt;STRONG&gt;acedTraceBoundary &lt;/STRONG&gt;be made to recognise splines? How does BOUNDARY do it?&lt;/P&gt;</description>
      <pubDate>Mon, 17 Aug 2020 02:29:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/quick-show-area-tool/m-p/9694363#M4143</guid>
      <dc:creator>Kyudos</dc:creator>
      <dc:date>2020-08-17T02:29:05Z</dc:date>
    </item>
    <item>
      <title>Re: Quick Show Area Tool</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/quick-show-area-tool/m-p/9700306#M4144</link>
      <description>&lt;P&gt;BPOLY or -BOUNDARY can return Polyline or Region types.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For the closed areas made of Spline, it returns a Region, you might need to convert Spline to Polyline.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;</description>
      <pubDate>Wed, 19 Aug 2020 17:03:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/quick-show-area-tool/m-p/9700306#M4144</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-08-19T17:03:37Z</dc:date>
    </item>
    <item>
      <title>Re: Quick Show Area Tool</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/quick-show-area-tool/m-p/9700892#M4145</link>
      <description>&lt;P&gt;As I said earlier in the thread - I know how BOUNDARY works, but I'm trying to automate it. I could send command options to -BOUNDARY, but the region thing requires an extra response to accept, making the automation tricky. I would then have to find the just-added boundary, get it's area then remove the extraneous entity(s).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;acedTraceBoundary&lt;/STRONG&gt; appears to be as near an API equivalent of the BOUNDARY command as exists, but doesn't work the same way (i.e., it doesn't recognise splines).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I'm asking (the AutoDesk guys, I guess) - is there a simple API method of replicating the initial function of BOUNDARY? (that is, the part that finds the boundary, including splines - I don't actually need (or want) to create the polys or regions)&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Aug 2020 21:14:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/quick-show-area-tool/m-p/9700892#M4145</guid>
      <dc:creator>Kyudos</dc:creator>
      <dc:date>2020-08-19T21:14:29Z</dc:date>
    </item>
    <item>
      <title>Re: Quick Show Area Tool</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/quick-show-area-tool/m-p/9717448#M4146</link>
      <description>&lt;P&gt;I do not post here that often, so did not elaborate at all on my previous post.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I just had the time to do a test, using C# (have been a long time that do not use ARX), anyway.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;TraceBoundary works for me on enclosed areas that include Splines, so on an example made with lines, that form an U shape on one of the ends the edge it is a spline, and inside for islands a rectangle and a circle.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I use TraceBoundary, after the internal point, and true for island detection, returns 3 items, I just go and loop into each of these objects, returns a Region and two Polylines.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For the Region, I use Brep (AcBrBrep) and extract the area with brep.GetSurfaceArea().&lt;/P&gt;&lt;P&gt;For the other two Polylines, I convert them to Curve, then check if are curve.Closed, then I extract their area with curve.Area.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can do this without adding to the database any of the items.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, to me the larger area will be the outer one, any other one returned will be islands, or maybe you can test if the internal point is not inside of any of these islands, but guess it is overhead.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;HTH.-&lt;/P&gt;</description>
      <pubDate>Fri, 28 Aug 2020 14:37:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/quick-show-area-tool/m-p/9717448#M4146</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-08-28T14:37:50Z</dc:date>
    </item>
    <item>
      <title>Re: Quick Show Area Tool</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/quick-show-area-tool/m-p/9719855#M4147</link>
      <description>&lt;P&gt;Interesting - that's definitely not the case with CPP ObjectArx. This for example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="cpp"&gt;AcGePoint3d startpt;
acedInitGet(NULL, NULL);
AcArray&amp;lt;int&amp;gt; viewportNumbers;
AcGiTransientManager* pTransientManager = acgiGetTransientManager();
while (acedGetPoint(NULL, _T("\nSelect point in area: "), (double*)(&amp;amp;startpt)) == RTNORM)
{
    bool b = pTransientManager-&amp;gt;eraseTransients(kAcGiHighlight, 0, viewportNumbers);
    acedUpdateDisplay();

    AcDbVoidPtrArray Boundaries;
    bool detectIslands = Adesk::kTrue;
    es = acedTraceBoundary(startpt, detectIslands, Boundaries);

    if (es == Acad::eOk)
    {
        double dAreaTotal = 0.0L, dMaxArea = 0.0L, dArea = 0.0L;
        AcDbPolyline* poly = NULL;

        // Subtract the islands
        for (int i = 0; i &amp;lt; Boundaries.length(); i++)
        {
            AcDbEntity *pEnt = static_cast&amp;lt;AcDbEntity *&amp;gt;(Boundaries[i]);
            b = pTransientManager-&amp;gt;addTransient(pEnt, kAcGiHighlight, 0, viewportNumbers);
            acedUpdateDisplay();

            poly = (AcDbPolyline*)Boundaries[i];
            es = poly-&amp;gt;getArea(dArea);
            dAreaTotal += dArea;

            if (dArea &amp;gt; dMaxArea)
            {
                dMaxArea = dArea;
            }
        }

        acutPrintf(_T(" %.3f"), dMaxArea - (dAreaTotal - dMaxArea));
    }
    acedInitGet(NULL, NULL);
}

bool b = pTransientManager-&amp;gt;eraseTransients(kAcGiHighlight, 0, viewportNumbers);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Doesn't detect splines, ellipses or elliptical arcs, but is fine with lines, normal arcs and arced polyline segments.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So it seems like the interface and the C# function don't use &lt;STRONG&gt;acedTraceBoundary.&amp;nbsp;&lt;/STRONG&gt;We are just theorising here, hence the need for some weigh-in from the AutoDesk peeps.&lt;/P&gt;</description>
      <pubDate>Sun, 30 Aug 2020 21:55:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/quick-show-area-tool/m-p/9719855#M4147</guid>
      <dc:creator>Kyudos</dc:creator>
      <dc:date>2020-08-30T21:55:17Z</dc:date>
    </item>
    <item>
      <title>Re: Quick Show Area Tool</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/quick-show-area-tool/m-p/9719869#M4148</link>
      <description>&lt;P&gt;I give it a try also with ARX, I am rusty now, last time was 10+ years ago, but the code below works for me (it is just something in progress), was curios too.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Works with a closed area formed with splines, ellipse, and normal lines too, and island entities with circle and rectangle.&lt;/P&gt;&lt;LI-CODE lang="cpp"&gt;	static void MyGroupTest1() {
		AcGePoint3d seedPt;
		acedGetPoint(NULL, ACRX_T("\nSelect internal point: "), asDblArray(seedPt));
		AcDbVoidPtrArray Boundaries;
		bool detectIslands = Adesk::kTrue;
		if (acedTraceBoundary(seedPt, detectIslands, Boundaries) == Acad::eOk) {
			AcDbBlockTableRecordPointer pCurSpace(acdbCurDwg()-&amp;gt;currentSpaceId(), AcDb::kForWrite);

			vector&amp;lt;double&amp;gt; areas;

			if (pCurSpace.openStatus() == Acad::eOk) {
				for (int i = 0; i &amp;lt; Boundaries.length(); i++) {
					AcDbCurve *pCurve = static_cast&amp;lt;AcDbCurve *&amp;gt;(Boundaries[i]);

					if (pCurve-&amp;gt;isKindOf(AcDbRegion::desc()))
					{
						AcDbRegion *pRegion = static_cast&amp;lt;AcDbRegion *&amp;gt;(Boundaries[i]);;
						AcBrBrep* pBrep = new AcBrBrep();
						if (AcBr::eOk == pBrep-&amp;gt;set(*pRegion))
						{
							double area = 0.0f;
							if (AcBr::eOk == pBrep-&amp;gt;getSurfaceArea(area))
							{
								areas.push_back(area);
							}
						}
					}
					else
					{
						double polyArea = 0.0f;

						if (Acad::eOk == pCurve-&amp;gt;getArea(polyArea))
						{
							areas.push_back(polyArea);
						}
					}
					
					pCurSpace-&amp;gt;appendAcDbEntity(pCurve);
					pCurve-&amp;gt;close();
				}
			}
		}
	}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 30 Aug 2020 22:22:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/quick-show-area-tool/m-p/9719869#M4148</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-08-30T22:22:41Z</dc:date>
    </item>
    <item>
      <title>Re: Quick Show Area Tool</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/quick-show-area-tool/m-p/9719873#M4149</link>
      <description>&lt;P&gt;By looking at your code, I think the issue it is the cast to AcDbPolyline, try with AcDbCurve.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;</description>
      <pubDate>Sun, 30 Aug 2020 22:41:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/quick-show-area-tool/m-p/9719873#M4149</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-08-30T22:41:19Z</dc:date>
    </item>
    <item>
      <title>Re: Quick Show Area Tool</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/quick-show-area-tool/m-p/9719875#M4150</link>
      <description>&lt;P&gt;OK - I'm not using that Brep stuff, and it's not recognised by my build environment. Some investigation required!&lt;/P&gt;</description>
      <pubDate>Sun, 30 Aug 2020 22:43:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/quick-show-area-tool/m-p/9719875#M4150</guid>
      <dc:creator>Kyudos</dc:creator>
      <dc:date>2020-08-30T22:43:20Z</dc:date>
    </item>
    <item>
      <title>Re: Quick Show Area Tool</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/quick-show-area-tool/m-p/9719891#M4151</link>
      <description>&lt;P&gt;Try to first use the traceBoundary normally, with the AcDbCurve objects, to double check works by adding the new boundaries (this function will return Polylines and Regions, that's why the use of Brep Api for the region(s)).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For Brep, I end up adding these two libs under Linker/Input:&amp;nbsp;acgex22.lib;acbr22.lib - these are under Utils/Brep&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;End up also adding all these includes in the .cpp entrypoint:&lt;/P&gt;&lt;P&gt;#include &amp;lt;brbrep.h&amp;gt;&lt;BR /&gt;#include &amp;lt;brbetrav.h&amp;gt;&lt;BR /&gt;#include &amp;lt;bredge.h&amp;gt;&lt;BR /&gt;#include "brgbl.h"&lt;BR /&gt;#include "brvtx.h"&lt;BR /&gt;#include "gegbl.h"&lt;BR /&gt;#include "brprops.h"&lt;BR /&gt;#include "brface.h"&lt;BR /&gt;#include "brtrav.h"&lt;BR /&gt;#include "brbetrav.h"&lt;BR /&gt;#include "rxobject.h"&lt;BR /&gt;#include "rxboiler.h"&lt;BR /&gt;#include "brbftrav.h"&lt;BR /&gt;#include "brbvtrav.h"&lt;BR /&gt;#include "brvetrav.h"&lt;BR /&gt;#include "brvltrav.h"&lt;BR /&gt;#include "brloop.h"&lt;BR /&gt;#include "breltrav.h"&lt;BR /&gt;#include "brfltrav.h"&lt;BR /&gt;#include "brletrav.h"&lt;BR /&gt;#include "gesurf.h"&lt;BR /&gt;#include &amp;lt;ol_errno.h&amp;gt;&lt;BR /&gt;#include &amp;lt;brgbl.h&amp;gt;&lt;/P&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;Just to make it work for me, I know there can be the arx wizard that can allow this:&amp;nbsp;#define _BREP_SUPPORT_&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;HTH!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 30 Aug 2020 22:57:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/quick-show-area-tool/m-p/9719891#M4151</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-08-30T22:57:17Z</dc:date>
    </item>
    <item>
      <title>Re: Quick Show Area Tool</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/quick-show-area-tool/m-p/9719931#M4152</link>
      <description>&lt;P&gt;I must be missing something - I've tried using curves and with BREP support, I just can't get it to recognise splines.&lt;/P&gt;&lt;P&gt;With four lines and a spline:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="ShowArea.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/813138iC44FC50F7E8D528E/image-size/large?v=v2&amp;amp;px=999" role="button" title="ShowArea.png" alt="ShowArea.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I only ever get this polyline boundary returned, no regions.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 31 Aug 2020 00:06:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/quick-show-area-tool/m-p/9719931#M4152</guid>
      <dc:creator>Kyudos</dc:creator>
      <dc:date>2020-08-31T00:06:57Z</dc:date>
    </item>
    <item>
      <title>Re: Quick Show Area Tool</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/quick-show-area-tool/m-p/9720092#M4153</link>
      <description>&lt;P&gt;I have no idea why this should be the case - but it was the transaction that made the difference. If I don't put my code inside a transaction, it detects the spline and returns regions.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for you input - at least I now have some workable code!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;EDIT:&lt;/STRONG&gt; Well mostly working! I find my transient highlighting (as above) doesn't work / interact with ellipses or elliptical arcs (though the regions involved there still give the correct area).&lt;/P&gt;</description>
      <pubDate>Mon, 31 Aug 2020 03:14:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/quick-show-area-tool/m-p/9720092#M4153</guid>
      <dc:creator>Kyudos</dc:creator>
      <dc:date>2020-08-31T03:14:28Z</dc:date>
    </item>
    <item>
      <title>Re: Quick Show Area Tool</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/quick-show-area-tool/m-p/9733185#M4154</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/542776"&gt;@Kyudos&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have gone through the discussion.&lt;/P&gt;
&lt;P&gt;Should I understand your question as acedTraceBoundary doesn't work with Ellipses, Elliptical Arcs and Splines?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let me know if you need help on this.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Sep 2020 12:17:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/quick-show-area-tool/m-p/9733185#M4154</guid>
      <dc:creator>moogalm</dc:creator>
      <dc:date>2020-09-07T12:17:31Z</dc:date>
    </item>
    <item>
      <title>Re: Quick Show Area Tool</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/quick-show-area-tool/m-p/9733773#M4155</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1937895"&gt;@moogalm&lt;/a&gt;&amp;nbsp;&lt;SPAN&gt;&lt;STRONG&gt;acedTraceBoundary&lt;/STRONG&gt; doesn't seem to work with Ellipses, Elliptical Arcs and Splines &lt;EM&gt;&lt;STRONG&gt;when used inside a transaction.&amp;nbsp;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this is intentional (although I can't see why it would be) it should be explained in the documentation.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But, otherwise I now have it mostly working well (without a transaction). I am having some issues with the transient highlighting (as in the code above), but I think that might be a separate issue (in which case it probably deserves a seprate topic).&lt;/P&gt;</description>
      <pubDate>Mon, 07 Sep 2020 20:38:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/quick-show-area-tool/m-p/9733773#M4155</guid>
      <dc:creator>Kyudos</dc:creator>
      <dc:date>2020-09-07T20:38:36Z</dc:date>
    </item>
  </channel>
</rss>

