mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-09 13:22:24 +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:
@@ -26,7 +26,7 @@ uses Circ2d from gp,
|
||||
|
||||
is
|
||||
|
||||
Create(Circ : Circ2d) returns mutable BCirc;
|
||||
Create(Circ : Circ2d) returns BCirc;
|
||||
---Purpose: Constructs a bisecting curve whose geometry is the 2D circle Circ.
|
||||
|
||||
Circle(me) returns Circ2d from gp
|
||||
|
@@ -26,7 +26,7 @@ uses Elips2d from gp,
|
||||
|
||||
is
|
||||
|
||||
Create(Ellipse : Elips2d) returns mutable BElips;
|
||||
Create(Ellipse : Elips2d) returns BElips;
|
||||
---Purpose:
|
||||
-- Constructs a bisecting curve whose geometry is the 2D ellipse Ellipse.
|
||||
|
||||
|
@@ -26,7 +26,7 @@ uses Hypr2d from gp,
|
||||
|
||||
is
|
||||
|
||||
Create(Hyper : Hypr2d from gp) returns mutable BHyper;
|
||||
Create(Hyper : Hypr2d from gp) returns BHyper;
|
||||
---Purpose:
|
||||
-- Constructs a bisecting curve whose geometry is the 2D hyperbola Hyper.
|
||||
|
||||
|
@@ -26,7 +26,7 @@ uses Lin2d from gp,
|
||||
|
||||
is
|
||||
|
||||
Create(Line : Lin2d) returns mutable BLine;
|
||||
Create(Line : Lin2d) returns BLine;
|
||||
---Purpose: Constructs a bisecting line whose geometry is the 2D line Line.
|
||||
|
||||
Line(me) returns Lin2d from gp
|
||||
|
@@ -26,7 +26,7 @@ uses Parab2d from gp,
|
||||
|
||||
is
|
||||
|
||||
Create(Parab : Parab2d) returns mutable BParab;
|
||||
Create(Parab : Parab2d) returns BParab;
|
||||
---Purpose: Constructs a bisecting curve whose geometry is the 2D parabola Parab.
|
||||
|
||||
Parabola(me) returns Parab2d from gp
|
||||
|
@@ -25,7 +25,7 @@ uses Pnt2d from gp,
|
||||
|
||||
is
|
||||
|
||||
Create(Point : Pnt2d) returns mutable BPoint;
|
||||
Create(Point : Pnt2d) returns BPoint;
|
||||
---Purpose: Constructs a bisecting object whose geometry is the 2D point Point.
|
||||
|
||||
Point(me) returns Pnt2d from gp
|
||||
|
Reference in New Issue
Block a user