1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-19 13:40: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:
abv
2014-04-15 08:50:00 +04:00
committed by apn
parent 99c68ea35f
commit 6e33d3ced2
2421 changed files with 6557 additions and 6604 deletions

View File

@@ -31,7 +31,7 @@ uses
Length from Quantity
is
Create returns mutable Drawer from VrmlConverter;
Create returns Drawer from VrmlConverter;
---Category: deviation definition.
--
@@ -125,7 +125,7 @@ is
--
-- Attributes for the U Isoparametric lines of patches.
--
UIsoAspect (me: mutable) returns mutable IsoAspect from VrmlConverter
UIsoAspect (me: mutable) returns IsoAspect from VrmlConverter
---Purpose: Defines the attributes which are used when drawing an
-- U isoparametric curve of a face. Defines the number
-- of U isoparametric curves to be drawn for a single face.
@@ -142,7 +142,7 @@ is
-- Attributes for the V Isoparametric line of patches.
VIsoAspect (me: mutable) returns mutable IsoAspect from VrmlConverter
VIsoAspect (me: mutable) returns IsoAspect from VrmlConverter
---Purpose: Defines the attributes which are used when drawing an
-- V isoparametric curve of a face. Defines the number
-- of V isoparametric curves to be drawn for a single face.
@@ -158,7 +158,7 @@ is
-- Attributes for the free boundaries
FreeBoundaryAspect (me: mutable) returns mutable LineAspect from VrmlConverter
FreeBoundaryAspect (me: mutable) returns LineAspect from VrmlConverter
---Purpose:
-- The default values are the same default values from Vrml package.
-- These attributes are used by the following algorithms:
@@ -182,7 +182,7 @@ is
-- Attributes for the wires
WireAspect (me: mutable) returns mutable LineAspect from VrmlConverter
WireAspect (me: mutable) returns LineAspect from VrmlConverter
---Purpose:
-- The default values are the same default values from Vrml package.
-- These attributes are used by the following algorithms:
@@ -206,7 +206,7 @@ is
-- Attributes for the unfree boundaries
UnFreeBoundaryAspect (me: mutable) returns mutable LineAspect from VrmlConverter
UnFreeBoundaryAspect (me: mutable) returns LineAspect from VrmlConverter
---Purpose:
-- The default values are the same default values from Vrml package.
-- These attributes are used by the following algorithms:
@@ -231,7 +231,7 @@ is
-- Attributes for the lines.
--
LineAspect(me: mutable) returns mutable LineAspect from VrmlConverter
LineAspect(me: mutable) returns LineAspect from VrmlConverter
---Purpose:
-- The default values are the same default values from Vrml package.
is static;
@@ -242,7 +242,7 @@ is
--
-- Attributes for the points
--
PointAspect(me: mutable) returns mutable PointAspect from VrmlConverter
PointAspect(me: mutable) returns PointAspect from VrmlConverter
-- The default values are the same default values from Vrml package.
-- These attributes are used by the following algorithms:
-- VrmlConverter_WFShape
@@ -255,7 +255,7 @@ is
-- Attributes for the faces:
--
ShadingAspect (me: mutable) returns mutable ShadingAspect from VrmlConverter
ShadingAspect (me: mutable) returns ShadingAspect from VrmlConverter
---Purpose:
-- The default values are the same default values from Vrml package.
is static;
@@ -282,7 +282,7 @@ is
---Purpose: sets DrawHiddenLine = Standard_False - the hidden lines are not drawn.
is static;
HiddenLineAspect(me: mutable) returns mutable LineAspect from VrmlConverter
HiddenLineAspect(me: mutable) returns LineAspect from VrmlConverter
---Purpose: returns LineAspect for the hidden lines.
-- The default values are the same default values from Vrml package.
is static;
@@ -291,7 +291,7 @@ is
---Purpose: sets LineAspect for the hidden lines.
is static;
SeenLineAspect(me: mutable) returns mutable LineAspect from VrmlConverter
SeenLineAspect(me: mutable) returns LineAspect from VrmlConverter
---Purpose: returns LineAspect for the seen lines.
-- The default values are the same default values from Vrml package.
is static;

View File

@@ -26,7 +26,7 @@ uses
is
Create
returns mutable IsoAspect from VrmlConverter;
returns IsoAspect from VrmlConverter;
---Purpose: create a default IsoAspect.
-- Default value: myNumber - 10.
@@ -34,7 +34,7 @@ is
Create (aMaterial: Material from Vrml;
OnOff: Boolean from Standard;
aNumber: Integer from Standard)
returns mutable IsoAspect from VrmlConverter;
returns IsoAspect from VrmlConverter;
SetNumber (me: mutable; aNumber: Integer from Standard)

View File

@@ -26,19 +26,19 @@ uses
is
Create
returns mutable LineAspect from VrmlConverter;
returns LineAspect from VrmlConverter;
---Purpose: create a default LineAspect.
-- Default value: HasMaterial = False - a line hasn't own material (color)
Create (aMaterial: Material from Vrml;
OnOff: Boolean from Standard)
returns mutable LineAspect from VrmlConverter;
returns LineAspect from VrmlConverter;
SetMaterial(me: mutable; aMaterial: Material from Vrml)
is static;
Material(me) returns mutable Material from Vrml
Material(me) returns Material from Vrml
is static;
SetHasMaterial(me: mutable; OnOff: Boolean from Standard)
@@ -51,7 +51,7 @@ is
---Purpose: returns True if the materials is writing into OStream.
is static;
-- Copy (me) returns mutable like me;
-- Copy (me) returns like me;
fields

View File

@@ -26,19 +26,19 @@ uses
is
Create
returns mutable PointAspect from VrmlConverter;
returns PointAspect from VrmlConverter;
---Purpose: create a default PointAspect.
-- Default value: HasMaterial = False - a line hasn't own material (color)
Create (aMaterial: Material from Vrml;
OnOff: Boolean from Standard)
returns mutable PointAspect from VrmlConverter;
returns PointAspect from VrmlConverter;
SetMaterial(me: mutable; aMaterial: Material from Vrml)
is static;
Material(me) returns mutable Material from Vrml
Material(me) returns Material from Vrml
is static;
SetHasMaterial(me: mutable; OnOff: Boolean from Standard)

View File

@@ -45,7 +45,7 @@ is
XUp, YUp, ZUp: Length from Quantity; -- High Point Direction
Camera: TypeOfCamera from VrmlConverter = VrmlConverter_NoCamera;
Light: TypeOfLight from VrmlConverter = VrmlConverter_NoLight )
returns mutable Projector from VrmlConverter;
returns Projector from VrmlConverter;
SetCamera ( me: mutable; aCamera : TypeOfCamera from VrmlConverter );

View File

@@ -28,12 +28,12 @@ is
Create
---Purpose: create a default ShadingAspect.
returns mutable ShadingAspect from VrmlConverter;
returns ShadingAspect from VrmlConverter;
SetFrontMaterial(me: mutable; aMaterial: Material from Vrml)
is static;
FrontMaterial(me) returns mutable Material from Vrml
FrontMaterial(me) returns Material from Vrml
is static;
-- SetBackMaterial(me: mutable; aMaterial: Material from Vrml)