CADability dotNET
Returns true if this NurbsSurface can be represented as a simpler surface. Simple surfaces have better performances.

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

Syntax

C#
public bool GetSimpleSurface(
	double precision,
	out ISurface simpleSurface,
	out ModOp2D reparametrisation
)
Visual Basic
Public Function GetSimpleSurface ( _
	precision As Double, _
	<OutAttribute> ByRef simpleSurface As ISurface, _
	<OutAttribute> ByRef reparametrisation As ModOp2D _
) As Boolean
Visual C++
public:
bool GetSimpleSurface(
	double precision, 
	[OutAttribute] ISurface^% simpleSurface, 
	[OutAttribute] ModOp2D% reparametrisation
)

Parameters

precision
Type: System..::..Double
The precision within the simpler surface must approximate this surface (0.0: use global Precision)
simpleSurface
Type: CADability.GeoObject..::..ISurface%
the found surface or null
reparametrisation
Type: CADability..::..ModOp2D%
the needed reparametrisation of the uv space from this surface to the surface found

Return Value

true, if simpler form exists

See Also