GeometryGym.Ifc.IfcBSplineSurface.IfcBSplineSurface C# (CSharp) Method

IfcBSplineSurface() protected method

protected IfcBSplineSurface ( int uDegree, int vDegree, List controlPoints, IfcBSplineSurfaceForm form ) : System
uDegree int
vDegree int
controlPoints List
form IfcBSplineSurfaceForm
return System
        protected IfcBSplineSurface(int uDegree, int vDegree, List<List<IfcCartesianPoint>> controlPoints, IfcBSplineSurfaceForm form)
            : this(controlPoints[0][0].mDatabase, uDegree, vDegree, form)
        {
            foreach (List<IfcCartesianPoint> cps in controlPoints)
                mControlPointsList.Add(cps.ConvertAll(x => x.mIndex));
        }

Same methods

IfcBSplineSurface::IfcBSplineSurface ( ) : System
IfcBSplineSurface::IfcBSplineSurface ( DatabaseIfc db, IfcBSplineSurface s ) : System
IfcBSplineSurface::IfcBSplineSurface ( DatabaseIfc db, int uDegree, int vDegree, IfcBSplineSurfaceForm form ) : System