CADability dotNET
Returns the Parameter of the given point projected into the plane of this ellipse (pp). For a circle or arc this is the radian of the angle of the point. For an ellipse this is the value (a), where e.x = center.x+majorradius*cos(a), e.y = center.y+minorradius*cos(a) yields a point (e) on the ellipse so that (pp) coincides with the line (center,e).

Namespace: CADability.GeoObject
Assembly: CADability (in CADability.dll) Version: 1.1.4254.24737 (1.1.*)

Syntax

C#
public double ParameterOf(
	GeoPoint p
)
Visual Basic
Public Function ParameterOf ( _
	p As GeoPoint _
) As Double
Visual C++
public:
double ParameterOf(
	GeoPoint p
)

Parameters

p
Type: CADability..::..GeoPoint
The point to check

Return Value

The parameter value

See Also