Class BSplineSurface
Class defining a B-Spline surface in three-dimensional euclidean space.
Inherited Members
Namespace: BRIDGES.Geometry.Euclidean3D
Assembly: BRIDGES.dll
Syntax
public class BSplineSurface : BSplineSurface<Point>
Constructors
| Improve this Doc View SourceBSplineSurface(Int32, Int32, Point[,])
Initialises a new instance of BSplineSurface class.
Declaration
public BSplineSurface(int degreeU, int degreeV, Point[, ] controlPoints)
Parameters
Type | Name | Description |
---|---|---|
Int32 | degreeU | Degree of the interpolating polynomials in the BSpline basis in u-direction. |
Int32 | degreeV | Degree of the interpolating polynomials in the BSpline basis in v-direction. |
Point[,] | controlPoints | Control points of the BSplineSurface. |