Vector3dExtensionGetAsPoint Method |
Converts 3D vector into 3D point with the same set of coordinates.
Namespace:
Gile.AutoCAD.R20.Geometry
Assembly:
GeometryExtensionsR20 (in GeometryExtensionsR20.dll) Version: 2.2.0.0 (2.2.0.0)
Syntaxpublic static Point3d GetAsPoint(
this Vector3d vector
)
<ExtensionAttribute>
Public Shared Function GetAsPoint (
vector As Vector3d
) As Point3d
public:
[ExtensionAttribute]
static Point3d GetAsPoint(
Vector3d vector
)
[<ExtensionAttribute>]
static member GetAsPoint :
vector : Vector3d -> Point3d
Parameters
- vector
- Type: Vector3d
The instance to which the method applies.
Return Value
Type:
Point3dAn instance of Point3D.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
Vector3d. 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