CADability dotNET
Assembly: CADability (in CADability.dll) Version: 1.1.4254.24737 (1.1.*)
Creates a new NURBS surface with the given data.
Namespace: CADability.GeoObjectAssembly: CADability (in CADability.dll) Version: 1.1.4254.24737 (1.1.*)
Syntax
C# |
---|
public NurbsSurface( GeoPoint[,] poles, double[,] weights, double[] uKnots, double[] vKnots, int uDegree, int vDegree, bool uPeriodic, bool vPeriodic ) |
Visual Basic |
---|
Public Sub New ( _ poles As GeoPoint(,), _ weights As Double(,), _ uKnots As Double(), _ vKnots As Double(), _ uDegree As Integer, _ vDegree As Integer, _ uPeriodic As Boolean, _ vPeriodic As Boolean _ ) |
Visual C++ |
---|
public: NurbsSurface( array<GeoPoint,2>^ poles, array<double,2>^ weights, array<double>^ uKnots, array<double>^ vKnots, int uDegree, int vDegree, bool uPeriodic, bool vPeriodic ) |
Parameters
- poles
- Type: array<CADability..::..GeoPoint,2>[,](,)[,][,]
the poles
- weights
- Type: array<System..::..Double,2>[,](,)[,][,]
the weight of the poles
- uKnots
- Type: array<System..::..Double>[]()[][]
the knots in u direction (multiple knots may have the same value)
- vKnots
- Type: array<System..::..Double>[]()[][]
the knots in v direction (multiple knots may have the same value)
- uDegree
- Type: System..::..Int32
the degree in u direction
- vDegree
- Type: System..::..Int32
the degree in v direction
- uPeriodic
- Type: System..::..Boolean
closed in u direction
- vPeriodic
- Type: System..::..Boolean
closed in v direction