mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-09 13:22:24 +03:00
0027047: STEP -- eliminate useless polymorhic methods Init()
Methods Init() in STEP data classes are made non-virtual, redundant variants just calling the same method of the base class are removed. A few places where removed method have been called are corrected.
This commit is contained in:
@@ -22,20 +22,6 @@ IMPLEMENT_STANDARD_RTTIEXT(StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface
|
||||
|
||||
StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface::StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface () {}
|
||||
|
||||
void StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface::Init(
|
||||
const Handle(TCollection_HAsciiString)& aName,
|
||||
const Standard_Integer aUDegree,
|
||||
const Standard_Integer aVDegree,
|
||||
const Handle(StepGeom_HArray2OfCartesianPoint)& aControlPointsList,
|
||||
const StepGeom_BSplineSurfaceForm aSurfaceForm,
|
||||
const StepData_Logical aUClosed,
|
||||
const StepData_Logical aVClosed,
|
||||
const StepData_Logical aSelfIntersect)
|
||||
{
|
||||
|
||||
StepGeom_BSplineSurface::Init(aName, aUDegree, aVDegree, aControlPointsList, aSurfaceForm, aUClosed, aVClosed, aSelfIntersect);
|
||||
}
|
||||
|
||||
void StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface::Init(
|
||||
const Handle(TCollection_HAsciiString)& aName,
|
||||
const Standard_Integer aUDegree,
|
||||
|
Reference in New Issue
Block a user