mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-24 13:50:49 +03:00
0024830: Remove redundant keyword 'mutable' in CDL declarations
Redundant keyword 'mutable' removed in CDL files. In IGESConvGeom_GeomBuilder, unused methods MakeXY() and MakeXYZ() removed. Method StepAP214_AutoDesignGroupAssignment::Init() replicating same method of the base class is removed as it causes CDL extraction error after above (seemingly irrelevant) changes.
This commit is contained in:
@@ -29,11 +29,11 @@ uses
|
||||
is
|
||||
|
||||
Create (C : Curve from Geom2d; CColor : Color from Draw)
|
||||
returns mutable DrawableC2D from TestTopOpeDraw;
|
||||
returns DrawableC2D from TestTopOpeDraw;
|
||||
|
||||
Create (C : Curve from Geom2d; CColor : Color from Draw;
|
||||
Text : CString; TextColor : Color from Draw)
|
||||
returns mutable DrawableC2D from TestTopOpeDraw;
|
||||
returns DrawableC2D from TestTopOpeDraw;
|
||||
|
||||
Create (C : Curve from Geom2d; CColor : Color from Draw;
|
||||
Text : CString; TextColor : Color from Draw;
|
||||
@@ -42,7 +42,7 @@ is
|
||||
DispCurvRadius : Boolean = Standard_False;
|
||||
RadiusMax : Real = 1.0e3;
|
||||
RatioOfRadius : Real = 0.1)
|
||||
returns mutable DrawableC2D from TestTopOpeDraw;
|
||||
returns DrawableC2D from TestTopOpeDraw;
|
||||
|
||||
Pnt2d(me) returns Pnt2d from gp is virtual;
|
||||
|
||||
|
@@ -31,17 +31,17 @@ uses
|
||||
is
|
||||
|
||||
Create (C : Curve from Geom; CColor : Color from Draw)
|
||||
returns mutable DrawableC3D from TestTopOpeDraw;
|
||||
returns DrawableC3D from TestTopOpeDraw;
|
||||
|
||||
Create (C : Curve from Geom; CColor : Color from Draw;
|
||||
Text : CString; TextColor : Color from Draw)
|
||||
returns mutable DrawableC3D from TestTopOpeDraw;
|
||||
returns DrawableC3D from TestTopOpeDraw;
|
||||
|
||||
Create (C : Curve from Geom; CColor : Color from Draw;
|
||||
Text : CString; TextColor : Color from Draw;
|
||||
Discret : Integer; Deflection : Real; DrawMode : Integer;
|
||||
DispOrigin : Boolean from Standard = Standard_True)
|
||||
returns mutable DrawableC3D from TestTopOpeDraw;
|
||||
returns DrawableC3D from TestTopOpeDraw;
|
||||
|
||||
Pnt(me) returns Pnt from gp is virtual;
|
||||
|
||||
|
@@ -36,7 +36,7 @@ is
|
||||
TextColor : Color from Draw;
|
||||
ScaleX : Real from Standard = 1.0;
|
||||
ScaleY : Real from Standard = 1.0)
|
||||
returns mutable DrawableMesure from TestTopOpeDraw;
|
||||
returns DrawableMesure from TestTopOpeDraw;
|
||||
|
||||
SetScale(me : mutable; ScaleX : Real from Standard;
|
||||
ScaleY : Real from Standard);
|
||||
|
@@ -32,25 +32,25 @@ is
|
||||
|
||||
Create (P : Pnt2d from gp; PColor : Color from Draw;
|
||||
moveX : Real = 0.0; moveY : Real = 0.0)
|
||||
returns mutable DrawableP2D from TestTopOpeDraw;
|
||||
returns DrawableP2D from TestTopOpeDraw;
|
||||
|
||||
Create (P : Pnt2d from gp; PColor : Color from Draw;
|
||||
Text : CString; TextColor : Color from Draw;
|
||||
moveX : Real = 0.0; moveY : Real = 0.0)
|
||||
returns mutable DrawableP2D from TestTopOpeDraw;
|
||||
returns DrawableP2D from TestTopOpeDraw;
|
||||
|
||||
Create (P : Pnt2d from gp; T : MarkerShape from Draw; PColor : Color from Draw;
|
||||
Text : CString from Standard; TextColor : Color from Draw;
|
||||
Size : Integer from Standard = 2;
|
||||
moveX : Real = 0.0; moveY : Real = 0.0)
|
||||
returns mutable DrawableP2D from TestTopOpeDraw;
|
||||
returns DrawableP2D from TestTopOpeDraw;
|
||||
|
||||
Create (P : Pnt2d from gp; T : MarkerShape from Draw;
|
||||
PColor : Color from Draw;
|
||||
Text : CString from Standard; TextColor : Color from Draw;
|
||||
Tol : Real from Standard;
|
||||
moveX : Real = 0.0; moveY : Real = 0.0)
|
||||
returns mutable DrawableP2D from TestTopOpeDraw;
|
||||
returns DrawableP2D from TestTopOpeDraw;
|
||||
|
||||
ChangePnt2d(me : mutable; P : Pnt2d);
|
||||
|
||||
|
@@ -33,25 +33,25 @@ is
|
||||
|
||||
Create (P : Pnt from gp; PColor : Color from Draw;
|
||||
moveX : Real = 0.0; moveY : Real = 0.0)
|
||||
returns mutable DrawableP3D from TestTopOpeDraw;
|
||||
returns DrawableP3D from TestTopOpeDraw;
|
||||
|
||||
Create (P : Pnt from gp; PColor : Color from Draw;
|
||||
Text : CString; TextColor : Color from Draw;
|
||||
moveX : Real = 0.0; moveY : Real = 0.0)
|
||||
returns mutable DrawableP3D from TestTopOpeDraw;
|
||||
returns DrawableP3D from TestTopOpeDraw;
|
||||
|
||||
Create (P : Pnt from gp; T : MarkerShape from Draw; PColor : Color from Draw;
|
||||
Text : CString from Standard; TextColor : Color from Draw;
|
||||
Size : Integer from Standard = 2;
|
||||
moveX : Real = 0.0; moveY : Real = 0.0)
|
||||
returns mutable DrawableP3D from TestTopOpeDraw;
|
||||
returns DrawableP3D from TestTopOpeDraw;
|
||||
|
||||
Create (P : Pnt from gp; T : MarkerShape from Draw;
|
||||
PColor : Color from Draw;
|
||||
Text : CString from Standard; TextColor : Color from Draw;
|
||||
Tol : Real from Standard;
|
||||
moveX : Real = 0.0; moveY : Real = 0.0)
|
||||
returns mutable DrawableP3D from TestTopOpeDraw;
|
||||
returns DrawableP3D from TestTopOpeDraw;
|
||||
|
||||
ChangePnt(me : mutable; P : Pnt);
|
||||
|
||||
|
@@ -41,7 +41,7 @@ is
|
||||
Text : CString from Standard;
|
||||
TextColor : Color from Draw;
|
||||
DisplayGeometry : Boolean from Standard = Standard_False)
|
||||
returns mutable DrawableSHA from TestTopOpeDraw;
|
||||
returns DrawableSHA from TestTopOpeDraw;
|
||||
|
||||
SetDisplayGeometry(me : mutable; b : Boolean from Standard) is static;
|
||||
|
||||
|
@@ -29,11 +29,11 @@ uses
|
||||
is
|
||||
|
||||
Create (S : Surface from Geom; IsoColor : Color from Draw)
|
||||
returns mutable DrawableSUR from TestTopOpeDraw;
|
||||
returns DrawableSUR from TestTopOpeDraw;
|
||||
|
||||
Create (S : Surface from Geom; IsoColor : Color from Draw;
|
||||
Text : CString from Standard; TextColor : Color from Draw)
|
||||
returns mutable DrawableSUR from TestTopOpeDraw;
|
||||
returns DrawableSUR from TestTopOpeDraw;
|
||||
|
||||
Create (S : Surface from Geom; IsoColor : Color from Draw;
|
||||
BoundColor,NormalColor : Color from Draw;
|
||||
@@ -41,7 +41,7 @@ is
|
||||
Nu,Nv : Integer;
|
||||
Discret : Integer; Deflection : Real; DrawMode : Integer;
|
||||
DispOrigin : Boolean from Standard = Standard_True)
|
||||
returns mutable DrawableSUR from TestTopOpeDraw;
|
||||
returns DrawableSUR from TestTopOpeDraw;
|
||||
|
||||
Pnt(me) returns Pnt from gp
|
||||
is static;
|
||||
|
Reference in New Issue
Block a user