Click or drag to resize

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)
Syntax
public static Point2d Polar(
	this Point2d org,
	double angle,
	double distance
)

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: Point2d
The 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