Initializes the surface with the specified dimensions and specified degrees.
Syntax
'Declaration
Public Overrides Sub Init( _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer _
)
'Usage
Dim instance As ImGearVectorEntityBeziersurface
Dim dimensionM As Integer
Dim dimensionN As Integer
Dim degreeM As Integer
Dim degreeN As Integer
instance.Init(dimensionM, dimensionN, degreeM, degreeN)
public override void Init(
int ,
int ,
int ,
int
)
public: void Init(
int ,
int ,
int ,
int
) override
public:
void Init(
int ,
int ,
int ,
int
) override
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