コード例 #1
0
ファイル: GeometryFactory.cs プロジェクト: hipigod/Dynamo
        public INurbsSurfaceEntity NurbsSurfaceByControlVertices(IPointEntity[][] controlVertices, int uDegree, int vDegree)
        {
            DSGeometryApplication.Check();
            INurbsSurfaceEntity surface = new NurbsSurfaceEntity(controlVertices, uDegree, vDegree, 1);

            return(surface);
        }
コード例 #2
0
ファイル: GeometryFactory.cs プロジェクト: hipigod/Dynamo
        public INurbsSurfaceEntity NurbsSurfaceByPoints(IPointEntity[][] points, int uDegree, int vDegree)
        {
            DSGeometryApplication.Check();
            INurbsSurfaceEntity surface = new NurbsSurfaceEntity(points, uDegree, vDegree, 0);

            return(surface);
        }
コード例 #3
0
ファイル: GeometryFactory.cs プロジェクト: RobertiF/Dynamo
 public INurbsSurfaceEntity NurbsSurfaceByControlVertices(IPointEntity[][] controlVertices, int uDegree, int vDegree)
 {
     DSGeometryApplication.Check();
     INurbsSurfaceEntity surface = new NurbsSurfaceEntity(controlVertices, uDegree, vDegree, 1);
     return surface;
 }
コード例 #4
0
ファイル: GeometryFactory.cs プロジェクト: RobertiF/Dynamo
 public INurbsSurfaceEntity NurbsSurfaceByPoints(IPointEntity[][] points, int uDegree, int vDegree)
 {
     DSGeometryApplication.Check();
     INurbsSurfaceEntity surface = new NurbsSurfaceEntity(points, uDegree, vDegree, 0);
     return surface;
 }