コード例 #1
0
 public IBSplineSurfaceEntity BSplineSurfaceByPoints(IPointEntity[][] points, int uDegree, int vDegree)
 {
     DSGeometryApplication.Check();
     IBSplineSurfaceEntity surface = new BSplineSurfaceEntity();
     surface.UpdateByPoints(points, uDegree, vDegree);
     return surface;
 }
コード例 #2
0
 public IBSplineSurfaceEntity BSplineSurfaceByControlVertices(IPointEntity[][] controlVertices, int uDegree, int vDegree)
 {
     DSGeometryApplication.Check();
     IBSplineSurfaceEntity surface = new BSplineSurfaceEntity();
     surface.UpdateByPoles(controlVertices, uDegree, vDegree);
     return surface;
 }
コード例 #3
0
        public IBSplineSurfaceEntity BSplineSurfaceByPoints(IPointEntity[][] points, int uDegree, int vDegree)
        {
            DSGeometryApplication.Check();
            IBSplineSurfaceEntity surface = new BSplineSurfaceEntity();

            surface.UpdateByPoints(points, uDegree, vDegree);
            return(surface);
        }
コード例 #4
0
        public IBSplineSurfaceEntity BSplineSurfaceByControlVertices(IPointEntity[][] controlVertices, int uDegree, int vDegree)
        {
            DSGeometryApplication.Check();
            IBSplineSurfaceEntity surface = new BSplineSurfaceEntity();

            surface.UpdateByPoles(controlVertices, uDegree, vDegree);
            return(surface);
        }