Point3dExtensionPolar Method |
Defines a point with polar coordiantes relative to a base point.
Namespace:
Gile.AutoCAD.Geometry
Assembly:
GeometryExtensions (in GeometryExtensions.dll) Version: 2.0.0.0 (2.0.0.0)
Syntaxpublic static Point3d Polar(
this Point3d org,
double angle,
double distance
)
<ExtensionAttribute>
Public Shared Function Polar (
org As Point3d,
angle As Double,
distance As Double
) As Point3d
public:
[ExtensionAttribute]
static Point3d Polar(
Point3d org,
double angle,
double distance
)
[<ExtensionAttribute>]
static member Polar :
org : Point3d *
angle : float *
distance : float -> Point3d
Parameters
- org
- Type: Point3d
The instance to which this method applies. - angle
- Type: SystemDouble
The angle in radians from the X axis. - distance
- Type: SystemDouble
The distance from the base point.
Return Value
Type:
Point3dThe new 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).
See Also