Initializes the surface with the specified dimensions and specified degrees.
            
            
            
            Syntax
            
            
            
            
            'Declaration
 
Public MustOverride Sub Init( _
   ByVal  As Integer, _
   ByVal  As Integer, _
   ByVal  As Integer, _
   ByVal  As Integer _
) 
             
        
            
            'Usage
 
Dim instance As ImGearVectorEntitySplinesurface
Dim dimensionM As Integer
Dim dimensionN As Integer
Dim degreeM As Integer
Dim degreeN As Integer
 
instance.Init(dimensionM, dimensionN, degreeM, degreeN)
             
        
            
            public abstract void Init( 
   int ,
   int ,
   int ,
   int 
)
             
        
            
            public: abstract void Init( 
   int ,
   int ,
   int ,
   int 
) 
             
        
            
            public:
abstract void Init( 
   int ,
   int ,
   int ,
   int 
) 
             
        
             
        
            Parameters
- dimensionM
- Number of control points in M direction.
- dimensionN
- Number of control points in N direction.
- degreeM
- Surface degree in M direction.
- degreeN
- Surface degree in N direction.
 
            
            
            
            
            
            
            
            
            
            
            
            See Also