CADability dotNET
Determines, whether the given parameter denotes a point inside the bounds of the curve. i.e. the parameter must be greater or equal to 0.0 and less than or equal 1.0. The actual interval is a little bit extended according to the eps value.

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

Syntax

C#
bool IsParameterOnCurve(
	double par
)
Visual Basic
Function IsParameterOnCurve ( _
	par As Double _
) As Boolean
Visual C++
bool IsParameterOnCurve(
	double par
)

Parameters

par
Type: System..::..Double
the parameter to test

Return Value

true if on curve

See Also