CADability dotNET
Creates a new NURBS surface which interpolates the provided points. The surface will contain the provided points exactely and smoothly interpolated inbetween. The points are organized in a two dimensional array resembling the u and v direction (first and second index) of the NURBS surface

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

Syntax

C#
public NurbsSurface(
	GeoPoint[,] throughPoints,
	int maxUDegree,
	int maxVDegree,
	bool uPeriodic,
	bool vPeriodic
)
Visual Basic
Public Sub New ( _
	throughPoints As GeoPoint(,), _
	maxUDegree As Integer, _
	maxVDegree As Integer, _
	uPeriodic As Boolean, _
	vPeriodic As Boolean _
)
Visual C++
public:
NurbsSurface(
	array<GeoPoint,2>^ throughPoints, 
	int maxUDegree, 
	int maxVDegree, 
	bool uPeriodic, 
	bool vPeriodic
)

Parameters

throughPoints
Type: array<CADability..::..GeoPoint,2>[,](,)[,][,]
Points to be interpolated
maxUDegree
Type: System..::..Int32
The maximum degree in respect of the first index
maxVDegree
Type: System..::..Int32
The maximum degree in respect of the second index
uPeriodic
Type: System..::..Boolean
Periodicy in respect of the first index
vPeriodic
Type: System..::..Boolean
Periodicy in respect of the second index

See Also