Point3dExtensionTrans Method (Point3d, Editor, Int32, Int32) |
Converts a point from a coordinate system to another one.
Namespace:
Gile.AutoCAD.Geometry
Assembly:
GeometryExtensions (in GeometryExtensions.dll) Version: 2.0.0.0 (2.0.0.0)
Syntaxpublic static Point3d Trans(
this Point3d pt,
Editor ed,
int from,
int to
)
<ExtensionAttribute>
Public Shared Function Trans (
pt As Point3d,
ed As Editor,
from As Integer,
to As Integer
) As Point3d
public:
[ExtensionAttribute]
static Point3d Trans(
Point3d pt,
Editor^ ed,
int from,
int to
)
[<ExtensionAttribute>]
static member Trans :
pt : Point3d *
ed : Editor *
from : int *
to : int -> Point3d
Parameters
- pt
- Type: Point3d
The instance to which this method applies. - ed
- Type: Editor
Current instance of Editor. - from
- Type: SystemInt32
The origin coordinate system flag. - to
- Type: SystemInt32
The destination coordinate system flag.
Return Value
Type:
Point3dThe corresponding Point3d.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
Point3d. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
ExceptionsException | Condition |
---|
Exception |
eInvalidInput thrown of 3 (CoordSystem.PSDCS) is used with another flag than 2 (CoordSystem.DCS). |
See Also