Point3dExtensionTrans Method (Point3d, CoordSystem, CoordSystem) |
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,
CoordSystem from,
CoordSystem to
)
<ExtensionAttribute>
Public Shared Function Trans (
pt As Point3d,
from As CoordSystem,
to As CoordSystem
) As Point3d
public:
[ExtensionAttribute]
static Point3d Trans(
Point3d pt,
CoordSystem from,
CoordSystem to
)
[<ExtensionAttribute>]
static member Trans :
pt : Point3d *
from : CoordSystem *
to : CoordSystem -> Point3d
Parameters
- pt
- Type: Point3d
The instance to which this method applies. - from
- Type: Gile.AutoCAD.GeometryCoordSystem
The origin coordinate system. - to
- Type: Gile.AutoCAD.GeometryCoordSystem
The destination coordinate system.
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