CADability dotNET
Gets the minimum and maximumm valus for the z-coordinate of a rectangular patch (in parametric space) of this surface under a certain projection

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

Syntax

C#
void GetZMinMax(
	Projection p,
	double umin,
	double umax,
	double vmin,
	double vmax,
	ref double zMin,
	ref double zMax
)
Visual Basic
Sub GetZMinMax ( _
	p As Projection, _
	umin As Double, _
	umax As Double, _
	vmin As Double, _
	vmax As Double, _
	ByRef zMin As Double, _
	ByRef zMax As Double _
)
Visual C++
void GetZMinMax(
	Projection^ p, 
	double umin, 
	double umax, 
	double vmin, 
	double vmax, 
	double% zMin, 
	double% zMax
)

Parameters

p
Type: CADability..::..Projection
the projection
umin
Type: System..::..Double
left bound of the rectangular patch
umax
Type: System..::..Double
right bound of the rectangular patch
vmin
Type: System..::..Double
bottom bound of the rectangular patch
vmax
Type: System..::..Double
top bound of the rectangular patch
zMin
Type: System..::..Double%
returned minimum
zMax
Type: System..::..Double%
returned maximum

See Also