<?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: Set UCS to ECS in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/set-ucs-to-ecs/m-p/2656866#M66202</link>
    <description>Well, that's unfortunate.  Any idea how AutoCAD determines the ECS when you use the UCS command with the E option?</description>
    <pubDate>Wed, 31 Mar 2010 13:03:36 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2010-03-31T13:03:36Z</dc:date>
    <item>
      <title>Set UCS to ECS</title>
      <link>https://forums.autodesk.com/t5/net-forum/set-ucs-to-ecs/m-p/2656859#M66195</link>
      <description>In the midst of a command, I prompt the user to select an entity.  I want to set the UCS to the ECS of that object.  I'm trying a basic example with the entity being a line (not horizontal obviously), but the Ecs property is always the identity matrix, and thus it doesn't change UCS from WCS.&lt;BR /&gt;
&lt;BR /&gt;
Transaction tr = db.TransactionManager.StartTransaction();&lt;BR /&gt;
Entity ent = (Entity)tr.GetObject((ObjectId)id, OpenMode.ForRead);&lt;BR /&gt;
ed.CurrentUserCoordinateSystem = ent.Ecs;&lt;BR /&gt;
&lt;BR /&gt;
It should be just that simple (I think).  I posted a similar issue dealing with DBText before, but never got a solution.  Any ideas?</description>
      <pubDate>Mon, 29 Mar 2010 19:33:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/set-ucs-to-ecs/m-p/2656859#M66195</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-03-29T19:33:45Z</dc:date>
    </item>
    <item>
      <title>Re: Set UCS to ECS</title>
      <link>https://forums.autodesk.com/t5/net-forum/set-ucs-to-ecs/m-p/2656860#M66196</link>
      <description>{quote}&lt;BR /&gt;
&lt;BR /&gt;
In the midst of a command.....&lt;BR /&gt;
&lt;BR /&gt;
{quote}&lt;BR /&gt;
&lt;BR /&gt;
Command: 'UCS&lt;BR /&gt;
** That command may not be invoked transparently **&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&lt;BR /&gt;
Supporting AutoCAD 2000 through 2011&lt;BR /&gt;
&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
Email: string.Format("{0}@{1}.com", "tonyt", "caddzone");</description>
      <pubDate>Mon, 29 Mar 2010 19:49:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/set-ucs-to-ecs/m-p/2656860#M66196</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-03-29T19:49:56Z</dc:date>
    </item>
    <item>
      <title>Re: Set UCS to ECS</title>
      <link>https://forums.autodesk.com/t5/net-forum/set-ucs-to-ecs/m-p/2656861#M66197</link>
      <description>Sorry Tony, I'm not sure what you're getting at... Perhaps I was unclear.  I have a command method.  In that method, I want to (programmatically) set the coordinate system to the entity coordinate system of a user selected entity.  I'm not calling the UCS command.&lt;BR /&gt;
&lt;BR /&gt;
The issue I'm running into is that the Ecs property of Entity always seems to be the identity matrix.</description>
      <pubDate>Tue, 30 Mar 2010 12:10:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/set-ucs-to-ecs/m-p/2656861#M66197</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-03-30T12:10:52Z</dc:date>
    </item>
    <item>
      <title>Re: Set UCS to ECS</title>
      <link>https://forums.autodesk.com/t5/net-forum/set-ucs-to-ecs/m-p/2656862#M66198</link>
      <description>What I'm getting at is that you can't change the current UCS&lt;BR /&gt;
while a command is running, regardless of how you do it.&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&lt;BR /&gt;
Supporting AutoCAD 2000 through 2011&lt;BR /&gt;
&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
Email: string.Format("{0}@{1}.com", "tonyt", "caddzone");&lt;BR /&gt;
&lt;BR /&gt;
&lt;FYATHYRIO8&gt; wrote in message news:6363281@discussion.autodesk.com...&lt;BR /&gt;
Sorry Tony, I'm not sure what you're getting at... Perhaps I was unclear.  I &lt;BR /&gt;
have a command method.  In that method, I want to (programmatically) set the &lt;BR /&gt;
coordinate system to the entity coordinate system of a user selected entity. &lt;BR /&gt;
I'm not calling the UCS command.&lt;BR /&gt;
&lt;BR /&gt;
The issue I'm running into is that the Ecs property of Entity always seems to be &lt;BR /&gt;
the identity matrix.&lt;/FYATHYRIO8&gt;</description>
      <pubDate>Tue, 30 Mar 2010 19:31:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/set-ucs-to-ecs/m-p/2656862#M66198</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-03-30T19:31:58Z</dc:date>
    </item>
    <item>
      <title>Re: Set UCS to ECS</title>
      <link>https://forums.autodesk.com/t5/net-forum/set-ucs-to-ecs/m-p/2656863#M66199</link>
      <description>That isn't the issue I'm trying to figure out - I am able to change the current UCS without a problem.  Forget the reason I'm trying to use Ecs...  The problem I have is that Entity.Ecs is always the identity matrix. If I draw a line from 10,10,0 to 50,50,0 it's Ecs property should NOT be (1,0,0,0), (0,1,0,0), (0,0,1,0), (0,0,0,1) - But it is.&lt;BR /&gt;
&lt;BR /&gt;
This simple function will reproduce the problem I seem to be having:&lt;BR /&gt;
&lt;BR /&gt;
public static void EcsTest()&lt;BR /&gt;
{&lt;BR /&gt;
Point3d start = new Point3d(10, 10, 0);&lt;BR /&gt;
Point3d end = new Point3d(50, 50, 0);&lt;BR /&gt;
Line line = new Line(start, end);&lt;BR /&gt;
Document doc = Application.DocumentManager.MdiActiveDocument;&lt;BR /&gt;
Database db = doc.Database;&lt;BR /&gt;
Transaction tr = db.TransactionManager.StartTransaction();&lt;BR /&gt;
BlockTableRecord mdlSpace = (BlockTableRecord)tr.GetObject(&lt;BR /&gt;
SymbolUtilityServices.GetBlockModelSpaceId(db), &lt;BR /&gt;
OpenMode.ForWrite);&lt;BR /&gt;
mdlSpace.AppendEntity(line);&lt;BR /&gt;
tr.AddNewlyCreatedDBObject(line, true);&lt;BR /&gt;
tr.Commit();&lt;BR /&gt;
doc.Editor.WriteMessage("\nECS: " + line.Ecs);&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;
The output I get by running this function is&lt;BR /&gt;
ECS: ((1,0,0,0),(0,1,0,0),(0,0,1,0),(0,0,0,1))

Edited by: fyathyrio8 on Mar 30, 2010 8:29 PM</description>
      <pubDate>Tue, 30 Mar 2010 20:14:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/set-ucs-to-ecs/m-p/2656863#M66199</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-03-30T20:14:44Z</dc:date>
    </item>
    <item>
      <title>Re: Set UCS to ECS</title>
      <link>https://forums.autodesk.com/t5/net-forum/set-ucs-to-ecs/m-p/2656864#M66200</link>
      <description>Also, you can change the UCS in a command as is shown by this (only slightly modified from http://discussion.autodesk.com/forums/thread.jspa?messageID=6357968ϐ)&lt;BR /&gt;
&lt;BR /&gt;
I would think that the Ecs property of the line in my previous post should match the mat matrix in the below code.&lt;BR /&gt;
&lt;BR /&gt;
public static void ChangeUcsTest()&lt;BR /&gt;
        {&lt;BR /&gt;
            Point3d pt1 = new Point3d(10, 10, 0);&lt;BR /&gt;
            Point3d pt2 = new Point3d(50, 50, 0);&lt;BR /&gt;
            Editor ed = Application.DocumentManager.MdiActiveDocument.Editor;&lt;BR /&gt;
            Vector3d zAxis = ed.CurrentUserCoordinateSystem.CoordinateSystem3d.Zaxis;&lt;BR /&gt;
            Vector3d xAxis = pt1.GetVectorTo(pt2).GetNormal();&lt;BR /&gt;
            Vector3d yAxis = zAxis.CrossProduct(xAxis).GetNormal();&lt;BR /&gt;
            Matrix3d mat = Matrix3d.AlignCoordinateSystem(&lt;BR /&gt;
                Point3d.Origin,&lt;BR /&gt;
                Vector3d.XAxis,&lt;BR /&gt;
                Vector3d.YAxis,&lt;BR /&gt;
                Vector3d.ZAxis,&lt;BR /&gt;
                pt1,&lt;BR /&gt;
                xAxis,&lt;BR /&gt;
                yAxis,&lt;BR /&gt;
                zAxis);&lt;BR /&gt;
            ed.CurrentUserCoordinateSystem = mat;&lt;BR /&gt;
        }</description>
      <pubDate>Tue, 30 Mar 2010 20:35:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/set-ucs-to-ecs/m-p/2656864#M66200</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-03-30T20:35:15Z</dc:date>
    </item>
    <item>
      <title>Re: Set UCS to ECS</title>
      <link>https://forums.autodesk.com/t5/net-forum/set-ucs-to-ecs/m-p/2656865#M66201</link>
      <description>The ECS of lines that lie in the WCS XY plane is always the Identity matrix.&lt;BR /&gt;
&lt;BR /&gt;
The only thing AutoCAD knows about an entity's coordinate system is its&lt;BR /&gt;
normal, because that's the only thing it stores.&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&lt;BR /&gt;
Supporting AutoCAD 2000 through 2011&lt;BR /&gt;
&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
Email: string.Format("{0}@{1}.com", "tonyt", "caddzone");&lt;BR /&gt;
&lt;BR /&gt;
&lt;FYATHYRIO8&gt; wrote in message news:6363868@discussion.autodesk.com...&lt;BR /&gt;
That isn't the issue I'm trying to figure out - I am able to change the current &lt;BR /&gt;
UCS without a problem.  Forget the reason I'm trying to use Ecs...  The problem &lt;BR /&gt;
I have is that Entity.Ecs is always the identity matrix. If I draw a line from &lt;BR /&gt;
10,10,0 to 50,50,0 it's Ecs property should NOT be (1,0,0,0), (0,1,0,0), &lt;BR /&gt;
(0,0,1,0), (0,0,0,1) - But it is.&lt;BR /&gt;
&lt;BR /&gt;
This simple function will reproduce the problem I seem to be having:&lt;BR /&gt;
&lt;BR /&gt;
public static void EcsTest()&lt;BR /&gt;
{&lt;BR /&gt;
Point3d start = new Point3d(10, 10, 0);&lt;BR /&gt;
Point3d end = new Point3d(50, 50, 0);&lt;BR /&gt;
Line line = new Line(start, end);&lt;BR /&gt;
Document doc = Application.DocumentManager.MdiActiveDocument;&lt;BR /&gt;
Database db = doc.Database;&lt;BR /&gt;
Transaction tr = db.TransactionManager.StartTransaction();&lt;BR /&gt;
BlockTableRecord mdlSpace = (BlockTableRecord)tr.GetObject(&lt;BR /&gt;
SymbolUtilityServices.GetBlockModelSpaceId(db),&lt;BR /&gt;
OpenMode.ForWrite);&lt;BR /&gt;
mdlSpace.AppendEntity(line);&lt;BR /&gt;
tr.AddNewlyCreatedDBObject(line, true);&lt;BR /&gt;
tr.Commit();&lt;BR /&gt;
doc.Editor.WriteMessage("\nECS: " + line.Ecs);&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;
The output I get by running this function is&lt;BR /&gt;
ECS: ((1,0,0,0),(0,1,0,0),(0,0,1,0),(0,0,0,1))&lt;BR /&gt;
&lt;BR /&gt;
Edited by: fyathyrio8 on Mar 30, 2010 8:29 PM&lt;/FYATHYRIO8&gt;</description>
      <pubDate>Wed, 31 Mar 2010 10:30:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/set-ucs-to-ecs/m-p/2656865#M66201</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-03-31T10:30:18Z</dc:date>
    </item>
    <item>
      <title>Re: Set UCS to ECS</title>
      <link>https://forums.autodesk.com/t5/net-forum/set-ucs-to-ecs/m-p/2656866#M66202</link>
      <description>Well, that's unfortunate.  Any idea how AutoCAD determines the ECS when you use the UCS command with the E option?</description>
      <pubDate>Wed, 31 Mar 2010 13:03:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/set-ucs-to-ecs/m-p/2656866#M66202</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-03-31T13:03:36Z</dc:date>
    </item>
    <item>
      <title>Re: Set UCS to ECS</title>
      <link>https://forums.autodesk.com/t5/net-forum/set-ucs-to-ecs/m-p/2656867#M66203</link>
      <description>It depends both on the object and what part of the&lt;BR /&gt;
object was picked.  For lines, it just sets the origin&lt;BR /&gt;
to the end nearest the pick point and aligns the X&lt;BR /&gt;
axis with the line.&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&lt;BR /&gt;
Supporting AutoCAD 2000 through 2011&lt;BR /&gt;
&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
Email: string.Format("{0}@{1}.com", "tonyt", "caddzone");&lt;BR /&gt;
&lt;BR /&gt;
&lt;FYATHYRIO8&gt; wrote in message news:6364273@discussion.autodesk.com...&lt;BR /&gt;
Well, that's unfortunate.  Any idea how AutoCAD determines the ECS when you use &lt;BR /&gt;
the UCS command with the E option?&lt;/FYATHYRIO8&gt;</description>
      <pubDate>Wed, 31 Mar 2010 17:23:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/set-ucs-to-ecs/m-p/2656867#M66203</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-03-31T17:23:13Z</dc:date>
    </item>
    <item>
      <title>Re: Set UCS to ECS</title>
      <link>https://forums.autodesk.com/t5/net-forum/set-ucs-to-ecs/m-p/2656868#M66204</link>
      <description>this is a serious problem for me too&lt;BR /&gt;
how can i do calculations relative to the ECS? ( i mean the one that fyathyrio8 mentioned) it is very easy in LISP with the "trans" function, i can't believe, that it's not possible in .NET&lt;BR /&gt;
&lt;BR /&gt;
all entities in World's XY plane have normal (0,0,1) and Ecs property (1,0,0,0), (0,1,0,0), (0,0,1,0), (0,0,0,1), so that's not the way to do it</description>
      <pubDate>Tue, 18 May 2010 14:59:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/set-ucs-to-ecs/m-p/2656868#M66204</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-05-18T14:59:01Z</dc:date>
    </item>
    <item>
      <title>Re: Set UCS to ECS</title>
      <link>https://forums.autodesk.com/t5/net-forum/set-ucs-to-ecs/m-p/2656869#M66205</link>
      <description>You compose a transformation matrix, using whatever&lt;BR /&gt;
parameters you want (e.g., the rotation set to the angle&lt;BR /&gt;
of a line in the WCS XY plane; the translation set to the&lt;BR /&gt;
end of the line that is to be the origin of the destination&lt;BR /&gt;
coordinate system), and you use the matrix to transform&lt;BR /&gt;
points, entities, etc, by passing it to their TransformBy()&lt;BR /&gt;
method.&lt;BR /&gt;
&lt;BR /&gt;
The problem isn't that there's no way to do what you&lt;BR /&gt;
need, the problem is that you're not familar with the&lt;BR /&gt;
tools needed to do the job, namely the geometry library&lt;BR /&gt;
(from the Autodesk.AutoCAD.Geometry namespace),&lt;BR /&gt;
which is not available to LISP.&lt;BR /&gt;
&lt;BR /&gt;
That library allows you to do what you mistakenly&lt;BR /&gt;
believe can't be done, and many other things that&lt;BR /&gt;
would need to be done entirely 'by-hand' in LISP.&lt;BR /&gt;
&lt;BR /&gt;
Try to avoid thinking about Managed ObjectARX&lt;BR /&gt;
as being the .NET equivalent of LISP, because&lt;BR /&gt;
that's not what it is.&lt;BR /&gt;
&lt;BR /&gt;
Managed ObjectARX is much more powerful than&lt;BR /&gt;
LISP, and along with that power comes additional&lt;BR /&gt;
complexity and finer granularity, which means that&lt;BR /&gt;
most things require more code than LISP.&lt;BR /&gt;
&lt;BR /&gt;
See this sample code:&lt;BR /&gt;
&lt;BR /&gt;
   http://www.caddzone.com/EntityECSExample.cs&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&lt;BR /&gt;
Supporting AutoCAD 2000 through 2011&lt;BR /&gt;
&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
Email: string.Format("{0}@{1}.com", "tonyt", "caddzone");&lt;BR /&gt;
&lt;BR /&gt;
&lt;MATUS.BRLIT&gt; wrote in message news:6393021@discussion.autodesk.com...&lt;BR /&gt;
this is a serious problem for me too&lt;BR /&gt;
how can i do calculations relative to the ECS? ( i mean the one that fyathyrio8 &lt;BR /&gt;
mentioned) it is very easy in LISP with the "trans" function, i can't believe, &lt;BR /&gt;
that it's not possible in .NET&lt;BR /&gt;
&lt;BR /&gt;
all entities in World's XY plane have normal (0,0,1) and Ecs property (1,0,0,0), &lt;BR /&gt;
(0,1,0,0), (0,0,1,0), (0,0,0,1), so that's not the way to do it&lt;/MATUS.BRLIT&gt;</description>
      <pubDate>Tue, 18 May 2010 19:34:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/set-ucs-to-ecs/m-p/2656869#M66205</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-05-18T19:34:47Z</dc:date>
    </item>
    <item>
      <title>Re: Set UCS to ECS</title>
      <link>https://forums.autodesk.com/t5/net-forum/set-ucs-to-ecs/m-p/2656870#M66206</link>
      <description>i didn't mean, that transforming is not possible at all, i just meant that there must be an easier way (but it seems there isn't)&lt;BR /&gt;
i used to work in LISP for years, only a month or so in .NET, so the old habits are still strong&lt;BR /&gt;
&lt;BR /&gt;
anyway, you mentioned a line, which is very easy, but that means, that as simple thing (for LISP) as working in OCS would require me to analyse all possible types of entities and choose a different approach for each type?&lt;BR /&gt;
&lt;BR /&gt;
can you give me a hint for dimensions? (aligned and rotated) that's what i need right now, others can wait for their time&lt;BR /&gt;
&lt;BR /&gt;
edit: GetStretchPoints looks like a good way

Edited by: matus.brlit@cemos.sk on May 19, 2010 7:58 AM</description>
      <pubDate>Wed, 19 May 2010 05:21:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/set-ucs-to-ecs/m-p/2656870#M66206</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-05-19T05:21:26Z</dc:date>
    </item>
    <item>
      <title>Re: Set UCS to ECS</title>
      <link>https://forums.autodesk.com/t5/net-forum/set-ucs-to-ecs/m-p/2656871#M66207</link>
      <description>Your only problem is that you've not learned to use&lt;BR /&gt;
the tools yet.&lt;BR /&gt;
&lt;BR /&gt;
The code sample I posted is not specific to lines,&lt;BR /&gt;
it shows how to compose a matrix from existing&lt;BR /&gt;
geometry.&lt;BR /&gt;
&lt;BR /&gt;
Exactly how you use the existing geometry is an&lt;BR /&gt;
implementation detail which I have no clue about.&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&lt;BR /&gt;
Supporting AutoCAD 2000 through 2011&lt;BR /&gt;
&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
Email: string.Format("{0}@{1}.com", "tonyt", "caddzone");&lt;BR /&gt;
&lt;BR /&gt;
&lt;MATUS.BRLIT&gt; wrote in message news:6393567@discussion.autodesk.com...&lt;BR /&gt;
i didn't mean, that transforming is not possible at all, i just meant that there &lt;BR /&gt;
must be an easier way (but it seems there isn't)&lt;BR /&gt;
i used to work in LISP for years, only a month or so in .NET, so the old habits &lt;BR /&gt;
are still strong&lt;BR /&gt;
&lt;BR /&gt;
anyway, you mentioned a line, which is very easy, but that means, that as simple &lt;BR /&gt;
thing (for LISP) as working in OCS would require me to analyse all possible &lt;BR /&gt;
types of entities and choose a different approach for each type?&lt;BR /&gt;
&lt;BR /&gt;
can you give me a hint for dimensions? (aligned and rotated) that's what i need &lt;BR /&gt;
right now, others can wait for their time&lt;BR /&gt;
&lt;BR /&gt;
edit: GetStretchPoints looks like a good way&lt;BR /&gt;
&lt;BR /&gt;
Edited by: matus.brlit@cemos.sk on May 19, 2010 7:58 AM&lt;/MATUS.BRLIT&gt;</description>
      <pubDate>Wed, 19 May 2010 10:28:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/set-ucs-to-ecs/m-p/2656871#M66207</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-05-19T10:28:18Z</dc:date>
    </item>
  </channel>
</rss>

