Point2dExtensionFlatten Method |
Projects the point on the XY plane of WCS.
Namespace:
Gile.AutoCAD.Geometry
Assembly:
GeometryExtensions (in GeometryExtensions.dll) Version: 2.0.0.0 (2.0.0.0)
Syntaxpublic static Point2d Flatten(
this Point2d pt,
Vector3d normal
)
<ExtensionAttribute>
Public Shared Function Flatten (
pt As Point2d,
normal As Vector3d
) As Point2d
public:
[ExtensionAttribute]
static Point2d Flatten(
Point2d pt,
Vector3d normal
)
[<ExtensionAttribute>]
static member Flatten :
pt : Point2d *
normal : Vector3d -> Point2d
Parameters
- pt
- Type: Point2d
The point to be projected. - normal
- Type: Vector3d
The Normal of the plane the point lies on.
Return Value
Type:
Point2dThe projected Point2d.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
Point2d. 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).
See Also