mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-14 13:30:48 +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:
@@ -54,7 +54,7 @@ is
|
||||
Create (AViewer : ViewManager from Visual3d;
|
||||
AType : TypeOfLayer from Aspect = Aspect_TOL_OVERLAY;
|
||||
AFlag : Boolean from Standard = Standard_False)
|
||||
returns mutable Layer from Visual3d;
|
||||
returns Layer from Visual3d;
|
||||
---Level: Public
|
||||
---Purpose: Creates a layer with the type <Atype>.
|
||||
-- if <AFlag> == Standard_True then the layer is
|
||||
|
@@ -51,7 +51,7 @@ raises
|
||||
is
|
||||
|
||||
Create
|
||||
returns mutable Light from Visual3d;
|
||||
returns Light from Visual3d;
|
||||
---Level: Public
|
||||
---Purpose: Creates a light from default values.
|
||||
-- Light sources are created in a visualiser
|
||||
@@ -61,7 +61,7 @@ is
|
||||
-- Color = WHITE
|
||||
|
||||
Create ( Color : Color from Quantity )
|
||||
returns mutable Light from Visual3d;
|
||||
returns Light from Visual3d;
|
||||
---Level: Public
|
||||
---Purpose: Creates an AMBIENT light source.
|
||||
-- Light sources are created in a visualiser
|
||||
@@ -70,7 +70,7 @@ is
|
||||
Create ( Color : Color from Quantity;
|
||||
Direction : Vector from Graphic3d;
|
||||
Headlight : Boolean from Standard = Standard_False )
|
||||
returns mutable Light from Visual3d
|
||||
returns Light from Visual3d
|
||||
---Level: Public
|
||||
---Purpose: Creates a DIRECTIONAL light source.
|
||||
-- Light sources are created in a visualiser
|
||||
@@ -81,7 +81,7 @@ is
|
||||
Create ( Color : Color from Quantity;
|
||||
Position : Vertex from Graphic3d;
|
||||
Fact1, Fact2 : Real from Standard )
|
||||
returns mutable Light from Visual3d
|
||||
returns Light from Visual3d
|
||||
---Level: Public
|
||||
---Purpose: Creates a POSITIONAL light source.
|
||||
-- Light sources are created in a visualiser
|
||||
@@ -98,7 +98,7 @@ is
|
||||
Concentration : Real from Standard;
|
||||
Fact1, Fact2 : Real from Standard;
|
||||
AngleCone : Real from Standard )
|
||||
returns mutable Light from Visual3d
|
||||
returns Light from Visual3d
|
||||
---Level: Public
|
||||
---Purpose: Creates a SPOT light source.
|
||||
-- Light sources are created in a visualiser
|
||||
|
@@ -131,8 +131,8 @@ is
|
||||
-- The associated window. --
|
||||
----------------------------------------------
|
||||
|
||||
Create ( AManager : mutable ViewManager from Visual3d )
|
||||
returns mutable View from Visual3d;
|
||||
Create ( AManager : ViewManager from Visual3d )
|
||||
returns View from Visual3d;
|
||||
---Level: Public
|
||||
---Purpose: Creates a view in the viewer <AManager> with a default
|
||||
-- orientation and a default mapping.
|
||||
|
@@ -53,7 +53,7 @@ uses
|
||||
is
|
||||
|
||||
Create ( theDriver: GraphicDriver from Graphic3d)
|
||||
returns mutable ViewManager from Visual3d;
|
||||
returns ViewManager from Visual3d;
|
||||
---Level: Public
|
||||
---Purpose: Creates a 3D visualizer.
|
||||
-- Currently creating of more than 100 viewer instances
|
||||
|
Reference in New Issue
Block a user