Click or drag to resize

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

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