Point2dExtensionPolar 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 Point2d Polar(
this Point2d org,
double angle,
double distance
)
<ExtensionAttribute>
Public Shared Function Polar (
org As Point2d,
angle As Double,
distance As Double
) As Point2d
public:
[ExtensionAttribute]
static Point2d Polar(
Point2d org,
double angle,
double distance
)
[<ExtensionAttribute>]
static member Polar :
org : Point2d *
angle : float *
distance : float -> Point2d
Parameters
- org
- Type: Point2d
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:
Point2dThe new 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