Click or drag to resize

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)
Syntax
public static Point3d Trans(
	this Point3d pt,
	Editor ed,
	int from,
	int to
)

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: Point3d
The 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).
Exceptions
ExceptionCondition
Exception eInvalidInput thrown of 3 (CoordSystem.PSDCS) is used with another flag than 2 (CoordSystem.DCS).
See Also