mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-04 13:13:25 +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:
@@ -40,7 +40,7 @@ uses
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable Circuit from MAT2d;
|
||||
Create returns Circuit from MAT2d;
|
||||
|
||||
---Category: Computation
|
||||
|
||||
@@ -75,7 +75,7 @@ is
|
||||
DoubleLine(me ;
|
||||
Line : in out SequenceOfGeometry;
|
||||
Connexions : in out SequenceOfConnexion from MAT2d;
|
||||
Father : mutable Connexion from MAT2d;
|
||||
Father : Connexion from MAT2d;
|
||||
Side : Real)
|
||||
is static private;
|
||||
|
||||
|
@@ -30,7 +30,7 @@ uses
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable Connexion from MAT2d;
|
||||
Create returns Connexion from MAT2d;
|
||||
|
||||
Create(LineA : Integer;
|
||||
LineB : Integer;
|
||||
@@ -41,7 +41,7 @@ is
|
||||
ParameterOnB : Real;
|
||||
PointA : Pnt2d from gp;
|
||||
PointB : Pnt2d from gp)
|
||||
returns mutable Connexion from MAT2d;
|
||||
returns Connexion from MAT2d;
|
||||
|
||||
IndexFirstLine(me) returns Integer
|
||||
---Purpose: Returns the Index on the first line.
|
||||
@@ -110,7 +110,7 @@ is
|
||||
---Purpose: Returns the reverse connexion of <me>.
|
||||
-- the firstpoint is the secondpoint.
|
||||
-- the secondpoint is the firstpoint.
|
||||
returns mutable Connexion from MAT2d
|
||||
returns Connexion from MAT2d
|
||||
is static;
|
||||
|
||||
IsAfter(me ; aConnexion : Connexion from MAT2d ; aSense : Real)
|
||||
|
@@ -59,8 +59,8 @@ is
|
||||
atool : in out Tool2d from MAT2d;
|
||||
aside : Integer ;
|
||||
noofbisectorstoremove: in out Integer ;
|
||||
bisector1 : mutable Bisector from MAT;
|
||||
bisector2 : mutable Bisector from MAT)
|
||||
bisector1 : Bisector from MAT;
|
||||
bisector2 : Bisector from MAT)
|
||||
is static private;
|
||||
|
||||
|
||||
|
@@ -95,7 +95,7 @@ is
|
||||
Father(me : in out ; Index : Integer)
|
||||
---Purpose: Returns the connexion which ends on line
|
||||
-- designed by <Index>.
|
||||
returns mutable Connexion from MAT2d
|
||||
returns Connexion from MAT2d
|
||||
is static;
|
||||
|
||||
Append (me : in out;
|
||||
@@ -115,7 +115,7 @@ is
|
||||
---Purpose: Returns the connexion which realises the minimum of
|
||||
-- distance between the lines of index <L1> and <L2> in
|
||||
-- <aFigure>. The connexion is oriented from <L1> to <L2>.
|
||||
returns mutable Connexion from MAT2d
|
||||
returns Connexion from MAT2d
|
||||
is static private;
|
||||
|
||||
fields
|
||||
|
@@ -90,11 +90,11 @@ is
|
||||
-- <theGeomVecs>
|
||||
returns Integer is static;
|
||||
|
||||
CreateBisector(me : in out ; abisector : mutable Bisector from MAT)
|
||||
CreateBisector(me : in out ; abisector : Bisector from MAT)
|
||||
--- Purpose : Creates the geometric bisector defined by <abisector>.
|
||||
is static;
|
||||
|
||||
TrimBisector(me : in out ; abisector : mutable Bisector from MAT)
|
||||
TrimBisector(me : in out ; abisector : Bisector from MAT)
|
||||
--- Purpose : Trims the geometric bisector by the <firstparameter>
|
||||
-- of <abisector>.
|
||||
-- If the parameter is out of the bisector, Return FALSE.
|
||||
@@ -102,7 +102,7 @@ is
|
||||
returns Boolean is static;
|
||||
|
||||
TrimBisector(me : in out ;
|
||||
abisector : mutable Bisector from MAT ;
|
||||
abisector : Bisector from MAT ;
|
||||
apoint : Integer)
|
||||
--- Purpose : Trims the geometric bisector by the point of index
|
||||
-- <apoint> in <theGeomPnts>.
|
||||
@@ -111,8 +111,8 @@ is
|
||||
returns Boolean is static;
|
||||
|
||||
IntersectBisector(me : in out ;
|
||||
bisectorone : mutable Bisector from MAT ;
|
||||
bisectortwo : mutable Bisector from MAT ;
|
||||
bisectorone : Bisector from MAT ;
|
||||
bisectortwo : Bisector from MAT ;
|
||||
intpnt : in out Integer)
|
||||
--- Purpose : Computes the point of intersection between the
|
||||
-- bisectors defined by <bisectorone> and
|
||||
|
Reference in New Issue
Block a user