Finds a point by means of polar coordinates.

Namespace: Autodesk.Civil
Assembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.4.2516.0

Syntax

C#
public static double[] PolarPoint(
	double[] refPoint,
	double angle,
	double distance
)
Visual Basic
Public Shared Function PolarPoint ( _
	refPoint As Double(), _
	angle As Double, _
	distance As Double _
) As Double()
Visual C++
public:
static array<double>^ PolarPoint(
	array<double>^ refPoint, 
	double angle, 
	double distance
)

Parameters

refPoint
Type: array<System..::..Double>[]()[][]
Initial three-dimensional reference point.
angle
Type: System..::..Double
Angle of the resulting point from the initial point.
distance
Type: System..::..Double
Distance of the resulting point from the initial point.

See Also