CADability dotNET
Gets spans of the parameterspace that are guaranteed to contain only one inflection point. The returned intu should contain umin as first and umax as last value (same with v)

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

Syntax

C#
void GetSafeParameterSteps(
	double umin,
	double umax,
	double vmin,
	double vmax,
	out double[] intu,
	out double[] intv
)
Visual Basic
Sub GetSafeParameterSteps ( _
	umin As Double, _
	umax As Double, _
	vmin As Double, _
	vmax As Double, _
	<OutAttribute> ByRef intu As Double(), _
	<OutAttribute> ByRef intv As Double() _
)
Visual C++
void GetSafeParameterSteps(
	double umin, 
	double umax, 
	double vmin, 
	double vmax, 
	[OutAttribute] array<double>^% intu, 
	[OutAttribute] array<double>^% intv
)

Parameters

umin
Type: System..::..Double
umax
Type: System..::..Double
vmin
Type: System..::..Double
vmax
Type: System..::..Double
intu
Type: array<System..::..Double>[]()[][]%
intv
Type: array<System..::..Double>[]()[][]%

See Also