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:
@@ -25,7 +25,7 @@ uses
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable AnnotationOccurrence;
|
||||
Create returns AnnotationOccurrence;
|
||||
---Purpose: Returns a AnnotationOccurrence
|
||||
|
||||
|
||||
|
@@ -25,7 +25,7 @@ uses
|
||||
RepresentationItem from StepRepr
|
||||
is
|
||||
|
||||
Create returns mutable AnnotationText;
|
||||
Create returns AnnotationText;
|
||||
---Purpose: Returns a AnnotationText
|
||||
|
||||
|
||||
|
@@ -25,7 +25,7 @@ uses
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable AnnotationTextOccurrence;
|
||||
Create returns AnnotationTextOccurrence;
|
||||
---Purpose: Returns a AnnotationTextOccurrence
|
||||
|
||||
|
||||
|
@@ -24,19 +24,19 @@ uses
|
||||
PresentationSet from StepVisual
|
||||
is
|
||||
|
||||
Create returns mutable AreaInSet;
|
||||
Create returns AreaInSet;
|
||||
---Purpose: Returns a AreaInSet
|
||||
|
||||
Init (me : mutable;
|
||||
aArea : mutable PresentationArea from StepVisual;
|
||||
aInSet : mutable PresentationSet from StepVisual) is virtual;
|
||||
aArea : PresentationArea from StepVisual;
|
||||
aInSet : PresentationSet from StepVisual) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetArea(me : mutable; aArea : mutable PresentationArea);
|
||||
Area (me) returns mutable PresentationArea;
|
||||
SetInSet(me : mutable; aInSet : mutable PresentationSet);
|
||||
InSet (me) returns mutable PresentationSet;
|
||||
SetArea(me : mutable; aArea : PresentationArea);
|
||||
Area (me) returns PresentationArea;
|
||||
SetInSet(me : mutable; aInSet : PresentationSet);
|
||||
InSet (me) returns PresentationSet;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -23,7 +23,7 @@ uses
|
||||
AreaOrView from StepVisual
|
||||
is
|
||||
|
||||
Create returns mutable BackgroundColour;
|
||||
Create returns BackgroundColour;
|
||||
---Purpose: Returns a BackgroundColour
|
||||
|
||||
Init (me : mutable;
|
||||
|
@@ -25,7 +25,7 @@ uses
|
||||
RepresentationItem from StepRepr
|
||||
is
|
||||
|
||||
Create returns mutable CameraImage;
|
||||
Create returns CameraImage;
|
||||
---Purpose: Returns a CameraImage
|
||||
|
||||
|
||||
|
@@ -18,6 +18,6 @@ class CameraImage2dWithScale from StepVisual inherits CameraImage from Step
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable CameraImage2dWithScale;
|
||||
Create returns CameraImage2dWithScale;
|
||||
|
||||
end CameraImage2dWithScale;
|
||||
|
@@ -18,6 +18,6 @@ class CameraImage3dWithScale from StepVisual inherits CameraImage from Step
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable CameraImage3dWithScale;
|
||||
Create returns CameraImage3dWithScale;
|
||||
|
||||
end CameraImage3dWithScale;
|
||||
|
@@ -23,7 +23,7 @@ uses
|
||||
HAsciiString from TCollection
|
||||
is
|
||||
|
||||
Create returns mutable CameraModel;
|
||||
Create returns CameraModel;
|
||||
---Purpose: Returns a CameraModel
|
||||
|
||||
|
||||
|
@@ -25,22 +25,22 @@ uses
|
||||
HAsciiString from TCollection
|
||||
is
|
||||
|
||||
Create returns mutable CameraModelD2;
|
||||
Create returns CameraModelD2;
|
||||
---Purpose: Returns a CameraModelD2
|
||||
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection) is redefined;
|
||||
aName : HAsciiString from TCollection) is redefined;
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aViewWindow : mutable PlanarBox from StepVisual;
|
||||
aName : HAsciiString from TCollection;
|
||||
aViewWindow : PlanarBox from StepVisual;
|
||||
aViewWindowClipping : Boolean from Standard) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetViewWindow(me : mutable; aViewWindow : mutable PlanarBox);
|
||||
ViewWindow (me) returns mutable PlanarBox;
|
||||
SetViewWindow(me : mutable; aViewWindow : PlanarBox);
|
||||
ViewWindow (me) returns PlanarBox;
|
||||
SetViewWindowClipping(me : mutable; aViewWindowClipping : Boolean);
|
||||
ViewWindowClipping (me) returns Boolean;
|
||||
|
||||
|
@@ -25,24 +25,24 @@ uses
|
||||
HAsciiString from TCollection
|
||||
is
|
||||
|
||||
Create returns mutable CameraModelD3;
|
||||
Create returns CameraModelD3;
|
||||
---Purpose: Returns a CameraModelD3
|
||||
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection) is redefined;
|
||||
aName : HAsciiString from TCollection) is redefined;
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aViewReferenceSystem : mutable Axis2Placement3d from StepGeom;
|
||||
aPerspectiveOfVolume : mutable ViewVolume from StepVisual) is virtual;
|
||||
aName : HAsciiString from TCollection;
|
||||
aViewReferenceSystem : Axis2Placement3d from StepGeom;
|
||||
aPerspectiveOfVolume : ViewVolume from StepVisual) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetViewReferenceSystem(me : mutable; aViewReferenceSystem : mutable Axis2Placement3d);
|
||||
ViewReferenceSystem (me) returns mutable Axis2Placement3d;
|
||||
SetPerspectiveOfVolume(me : mutable; aPerspectiveOfVolume : mutable ViewVolume);
|
||||
PerspectiveOfVolume (me) returns mutable ViewVolume;
|
||||
SetViewReferenceSystem(me : mutable; aViewReferenceSystem : Axis2Placement3d);
|
||||
ViewReferenceSystem (me) returns Axis2Placement3d;
|
||||
SetPerspectiveOfVolume(me : mutable; aPerspectiveOfVolume : ViewVolume);
|
||||
PerspectiveOfVolume (me) returns ViewVolume;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -24,7 +24,7 @@ uses
|
||||
Representation from StepRepr
|
||||
is
|
||||
|
||||
Create returns mutable CameraUsage;
|
||||
Create returns CameraUsage;
|
||||
---Purpose: Returns a CameraUsage
|
||||
|
||||
|
||||
|
@@ -20,7 +20,7 @@ inherits TShared from MMgt
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable Colour;
|
||||
Create returns Colour;
|
||||
---Purpose: Returns a Colour
|
||||
|
||||
|
||||
|
@@ -24,15 +24,15 @@ uses
|
||||
HAsciiString from TCollection
|
||||
is
|
||||
|
||||
Create returns mutable ColourRgb;
|
||||
Create returns ColourRgb;
|
||||
---Purpose: Returns a ColourRgb
|
||||
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection) is redefined;
|
||||
aName : HAsciiString from TCollection) is redefined;
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aName : HAsciiString from TCollection;
|
||||
aRed : Real from Standard;
|
||||
aGreen : Real from Standard;
|
||||
aBlue : Real from Standard) is virtual;
|
||||
|
@@ -23,16 +23,16 @@ uses
|
||||
HAsciiString from TCollection
|
||||
is
|
||||
|
||||
Create returns mutable ColourSpecification;
|
||||
Create returns ColourSpecification;
|
||||
---Purpose: Returns a ColourSpecification
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection) is virtual;
|
||||
aName : HAsciiString from TCollection) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetName(me : mutable; aName : mutable HAsciiString);
|
||||
Name (me) returns mutable HAsciiString;
|
||||
SetName(me : mutable; aName : HAsciiString);
|
||||
Name (me) returns HAsciiString;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -25,21 +25,21 @@ uses
|
||||
HAsciiString from TCollection
|
||||
is
|
||||
|
||||
Create returns mutable CompositeText;
|
||||
Create returns CompositeText;
|
||||
---Purpose: Returns a CompositeText
|
||||
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection) is redefined;
|
||||
aName : HAsciiString from TCollection) is redefined;
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aCollectedText : mutable HArray1OfTextOrCharacter from StepVisual) is virtual;
|
||||
aName : HAsciiString from TCollection;
|
||||
aCollectedText : HArray1OfTextOrCharacter from StepVisual) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetCollectedText(me : mutable; aCollectedText : mutable HArray1OfTextOrCharacter);
|
||||
CollectedText (me) returns mutable HArray1OfTextOrCharacter;
|
||||
SetCollectedText(me : mutable; aCollectedText : HArray1OfTextOrCharacter);
|
||||
CollectedText (me) returns HArray1OfTextOrCharacter;
|
||||
CollectedTextValue (me; num : Integer) returns TextOrCharacter;
|
||||
NbCollectedText (me) returns Integer;
|
||||
|
||||
|
@@ -25,23 +25,23 @@ uses
|
||||
HArray1OfTextOrCharacter from StepVisual
|
||||
is
|
||||
|
||||
Create returns mutable CompositeTextWithExtent;
|
||||
Create returns CompositeTextWithExtent;
|
||||
---Purpose: Returns a CompositeTextWithExtent
|
||||
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aCollectedText : mutable HArray1OfTextOrCharacter from StepVisual) is redefined;
|
||||
aName : HAsciiString from TCollection;
|
||||
aCollectedText : HArray1OfTextOrCharacter from StepVisual) is redefined;
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aCollectedText : mutable HArray1OfTextOrCharacter from StepVisual;
|
||||
aExtent : mutable PlanarExtent from StepVisual) is virtual;
|
||||
aName : HAsciiString from TCollection;
|
||||
aCollectedText : HArray1OfTextOrCharacter from StepVisual;
|
||||
aExtent : PlanarExtent from StepVisual) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetExtent(me : mutable; aExtent : mutable PlanarExtent);
|
||||
Extent (me) returns mutable PlanarExtent;
|
||||
SetExtent(me : mutable; aExtent : PlanarExtent);
|
||||
Extent (me) returns PlanarExtent;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -24,15 +24,15 @@ uses
|
||||
HArray1OfInvisibleItem from StepVisual
|
||||
is
|
||||
|
||||
Create returns mutable ContextDependentInvisibility;
|
||||
Create returns ContextDependentInvisibility;
|
||||
---Purpose: Returns a ContextDependentInvisibility
|
||||
|
||||
|
||||
Init (me : mutable;
|
||||
aInvisibleItems : mutable HArray1OfInvisibleItem from StepVisual) is redefined;
|
||||
aInvisibleItems : HArray1OfInvisibleItem from StepVisual) is redefined;
|
||||
|
||||
Init (me : mutable;
|
||||
aInvisibleItems : mutable HArray1OfInvisibleItem from StepVisual;
|
||||
aInvisibleItems : HArray1OfInvisibleItem from StepVisual;
|
||||
aPresentationContext : InvisibilityContext from StepVisual) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
@@ -28,27 +28,27 @@ uses
|
||||
StyledItem from StepVisual
|
||||
is
|
||||
|
||||
Create returns mutable ContextDependentOverRidingStyledItem;
|
||||
Create returns ContextDependentOverRidingStyledItem;
|
||||
---Purpose: Returns a ContextDependentOverRidingStyledItem
|
||||
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aStyles : mutable HArray1OfPresentationStyleAssignment from StepVisual;
|
||||
aItem : mutable RepresentationItem from StepRepr;
|
||||
aOverRiddenStyle : mutable StyledItem from StepVisual) is redefined;
|
||||
aName : HAsciiString from TCollection;
|
||||
aStyles : HArray1OfPresentationStyleAssignment from StepVisual;
|
||||
aItem : RepresentationItem from StepRepr;
|
||||
aOverRiddenStyle : StyledItem from StepVisual) is redefined;
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aStyles : mutable HArray1OfPresentationStyleAssignment from StepVisual;
|
||||
aItem : mutable RepresentationItem from StepRepr;
|
||||
aOverRiddenStyle : mutable StyledItem from StepVisual;
|
||||
aStyleContext : mutable HArray1OfStyleContextSelect from StepVisual) is virtual;
|
||||
aName : HAsciiString from TCollection;
|
||||
aStyles : HArray1OfPresentationStyleAssignment from StepVisual;
|
||||
aItem : RepresentationItem from StepRepr;
|
||||
aOverRiddenStyle : StyledItem from StepVisual;
|
||||
aStyleContext : HArray1OfStyleContextSelect from StepVisual) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetStyleContext(me : mutable; aStyleContext : mutable HArray1OfStyleContextSelect);
|
||||
StyleContext (me) returns mutable HArray1OfStyleContextSelect;
|
||||
SetStyleContext(me : mutable; aStyleContext : HArray1OfStyleContextSelect);
|
||||
StyleContext (me) returns HArray1OfStyleContextSelect;
|
||||
StyleContextValue (me; num : Integer) returns StyleContextSelect;
|
||||
NbStyleContext (me) returns Integer;
|
||||
|
||||
|
@@ -26,25 +26,25 @@ uses
|
||||
Colour from StepVisual
|
||||
is
|
||||
|
||||
Create returns mutable CurveStyle;
|
||||
Create returns CurveStyle;
|
||||
---Purpose: Returns a CurveStyle
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aName : HAsciiString from TCollection;
|
||||
aCurveFont : CurveStyleFontSelect from StepVisual;
|
||||
aCurveWidth : SizeSelect from StepBasic;
|
||||
aCurveColour : mutable Colour from StepVisual) is virtual;
|
||||
aCurveColour : Colour from StepVisual) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetName(me : mutable; aName : mutable HAsciiString);
|
||||
Name (me) returns mutable HAsciiString;
|
||||
SetName(me : mutable; aName : HAsciiString);
|
||||
Name (me) returns HAsciiString;
|
||||
SetCurveFont(me : mutable; aCurveFont : CurveStyleFontSelect);
|
||||
CurveFont (me) returns CurveStyleFontSelect;
|
||||
SetCurveWidth(me : mutable; aCurveWidth : SizeSelect);
|
||||
CurveWidth (me) returns SizeSelect;
|
||||
SetCurveColour(me : mutable; aCurveColour : mutable Colour);
|
||||
CurveColour (me) returns mutable Colour;
|
||||
SetCurveColour(me : mutable; aCurveColour : Colour);
|
||||
CurveColour (me) returns Colour;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -25,20 +25,20 @@ uses
|
||||
CurveStyleFontPattern from StepVisual
|
||||
is
|
||||
|
||||
Create returns mutable CurveStyleFont;
|
||||
Create returns CurveStyleFont;
|
||||
---Purpose: Returns a CurveStyleFont
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aPatternList : mutable HArray1OfCurveStyleFontPattern from StepVisual) is virtual;
|
||||
aName : HAsciiString from TCollection;
|
||||
aPatternList : HArray1OfCurveStyleFontPattern from StepVisual) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetName(me : mutable; aName : mutable HAsciiString);
|
||||
Name (me) returns mutable HAsciiString;
|
||||
SetPatternList(me : mutable; aPatternList : mutable HArray1OfCurveStyleFontPattern);
|
||||
PatternList (me) returns mutable HArray1OfCurveStyleFontPattern;
|
||||
PatternListValue (me; num : Integer) returns mutable CurveStyleFontPattern;
|
||||
SetName(me : mutable; aName : HAsciiString);
|
||||
Name (me) returns HAsciiString;
|
||||
SetPatternList(me : mutable; aPatternList : HArray1OfCurveStyleFontPattern);
|
||||
PatternList (me) returns HArray1OfCurveStyleFontPattern;
|
||||
PatternListValue (me; num : Integer) returns CurveStyleFontPattern;
|
||||
NbPatternList (me) returns Integer;
|
||||
|
||||
fields
|
||||
|
@@ -23,7 +23,7 @@ uses
|
||||
Real from Standard
|
||||
is
|
||||
|
||||
Create returns mutable CurveStyleFontPattern;
|
||||
Create returns CurveStyleFontPattern;
|
||||
---Purpose: Returns a CurveStyleFontPattern
|
||||
|
||||
Init (me : mutable;
|
||||
|
@@ -25,7 +25,7 @@ uses
|
||||
RepresentationItem from StepRepr
|
||||
is
|
||||
|
||||
Create returns mutable DraughtingAnnotationOccurrence;
|
||||
Create returns DraughtingAnnotationOccurrence;
|
||||
---Purpose: Returns a DraughtingAnnotationOccurrence
|
||||
|
||||
|
||||
|
@@ -23,7 +23,7 @@ uses
|
||||
HAsciiString from TCollection
|
||||
is
|
||||
|
||||
Create returns mutable DraughtingPreDefinedColour;
|
||||
Create returns DraughtingPreDefinedColour;
|
||||
---Purpose: Returns a DraughtingPreDefinedColour
|
||||
|
||||
|
||||
|
@@ -23,7 +23,7 @@ uses
|
||||
HAsciiString from TCollection
|
||||
is
|
||||
|
||||
Create returns mutable DraughtingPreDefinedCurveFont;
|
||||
Create returns DraughtingPreDefinedCurveFont;
|
||||
---Purpose: Returns a DraughtingPreDefinedCurveFont
|
||||
|
||||
|
||||
|
@@ -25,19 +25,19 @@ uses
|
||||
FillStyleSelect from StepVisual
|
||||
is
|
||||
|
||||
Create returns mutable FillAreaStyle;
|
||||
Create returns FillAreaStyle;
|
||||
---Purpose: Returns a FillAreaStyle
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aFillStyles : mutable HArray1OfFillStyleSelect from StepVisual) is virtual;
|
||||
aName : HAsciiString from TCollection;
|
||||
aFillStyles : HArray1OfFillStyleSelect from StepVisual) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetName(me : mutable; aName : mutable HAsciiString);
|
||||
Name (me) returns mutable HAsciiString;
|
||||
SetFillStyles(me : mutable; aFillStyles : mutable HArray1OfFillStyleSelect);
|
||||
FillStyles (me) returns mutable HArray1OfFillStyleSelect;
|
||||
SetName(me : mutable; aName : HAsciiString);
|
||||
Name (me) returns HAsciiString;
|
||||
SetFillStyles(me : mutable; aFillStyles : HArray1OfFillStyleSelect);
|
||||
FillStyles (me) returns HArray1OfFillStyleSelect;
|
||||
FillStylesValue (me; num : Integer) returns FillStyleSelect;
|
||||
NbFillStyles (me) returns Integer;
|
||||
|
||||
|
@@ -24,19 +24,19 @@ uses
|
||||
Colour from StepVisual
|
||||
is
|
||||
|
||||
Create returns mutable FillAreaStyleColour;
|
||||
Create returns FillAreaStyleColour;
|
||||
---Purpose: Returns a FillAreaStyleColour
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aFillColour : mutable Colour from StepVisual) is virtual;
|
||||
aName : HAsciiString from TCollection;
|
||||
aFillColour : Colour from StepVisual) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetName(me : mutable; aName : mutable HAsciiString);
|
||||
Name (me) returns mutable HAsciiString;
|
||||
SetFillColour(me : mutable; aFillColour : mutable Colour);
|
||||
FillColour (me) returns mutable Colour;
|
||||
SetName(me : mutable; aName : HAsciiString);
|
||||
Name (me) returns HAsciiString;
|
||||
SetFillColour(me : mutable; aFillColour : Colour);
|
||||
FillColour (me) returns Colour;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -24,16 +24,16 @@ uses
|
||||
InvisibleItem from StepVisual
|
||||
is
|
||||
|
||||
Create returns mutable Invisibility;
|
||||
Create returns Invisibility;
|
||||
---Purpose: Returns a Invisibility
|
||||
|
||||
Init (me : mutable;
|
||||
aInvisibleItems : mutable HArray1OfInvisibleItem from StepVisual) is virtual;
|
||||
aInvisibleItems : HArray1OfInvisibleItem from StepVisual) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetInvisibleItems(me : mutable; aInvisibleItems : mutable HArray1OfInvisibleItem);
|
||||
InvisibleItems (me) returns mutable HArray1OfInvisibleItem;
|
||||
SetInvisibleItems(me : mutable; aInvisibleItems : HArray1OfInvisibleItem);
|
||||
InvisibleItems (me) returns HArray1OfInvisibleItem;
|
||||
InvisibleItemsValue (me; num : Integer) returns InvisibleItem;
|
||||
NbInvisibleItems (me) returns Integer;
|
||||
|
||||
|
@@ -23,7 +23,7 @@ uses CString, MarkerType from StepVisual
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable MarkerMember;
|
||||
Create returns MarkerMember;
|
||||
|
||||
HasName (me) returns Boolean is redefined;
|
||||
-- returns True
|
||||
|
@@ -25,7 +25,7 @@ uses
|
||||
RepresentationContext from StepRepr
|
||||
is
|
||||
|
||||
Create returns mutable MechanicalDesignGeometricPresentationArea;
|
||||
Create returns MechanicalDesignGeometricPresentationArea;
|
||||
---Purpose: Returns a MechanicalDesignGeometricPresentationArea
|
||||
|
||||
|
||||
|
@@ -25,7 +25,7 @@ uses
|
||||
RepresentationContext from StepRepr
|
||||
is
|
||||
|
||||
Create returns mutable MechanicalDesignGeometricPresentationRepresentation;
|
||||
Create returns MechanicalDesignGeometricPresentationRepresentation;
|
||||
---Purpose: Returns a MechanicalDesignGeometricPresentationRepresentation
|
||||
|
||||
|
||||
|
@@ -25,25 +25,25 @@ uses
|
||||
RepresentationItem from StepRepr
|
||||
is
|
||||
|
||||
Create returns mutable OverRidingStyledItem;
|
||||
Create returns OverRidingStyledItem;
|
||||
---Purpose: Returns a OverRidingStyledItem
|
||||
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aStyles : mutable HArray1OfPresentationStyleAssignment from StepVisual;
|
||||
aItem : mutable RepresentationItem from StepRepr) is redefined;
|
||||
aName : HAsciiString from TCollection;
|
||||
aStyles : HArray1OfPresentationStyleAssignment from StepVisual;
|
||||
aItem : RepresentationItem from StepRepr) is redefined;
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aStyles : mutable HArray1OfPresentationStyleAssignment from StepVisual;
|
||||
aItem : mutable RepresentationItem from StepRepr;
|
||||
aOverRiddenStyle : mutable StyledItem from StepVisual) is virtual;
|
||||
aName : HAsciiString from TCollection;
|
||||
aStyles : HArray1OfPresentationStyleAssignment from StepVisual;
|
||||
aItem : RepresentationItem from StepRepr;
|
||||
aOverRiddenStyle : StyledItem from StepVisual) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetOverRiddenStyle(me : mutable; aOverRiddenStyle : mutable StyledItem);
|
||||
OverRiddenStyle (me) returns mutable StyledItem;
|
||||
SetOverRiddenStyle(me : mutable; aOverRiddenStyle : StyledItem);
|
||||
OverRiddenStyle (me) returns StyledItem;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -25,17 +25,17 @@ uses
|
||||
Real from Standard
|
||||
is
|
||||
|
||||
Create returns mutable PlanarBox;
|
||||
Create returns PlanarBox;
|
||||
---Purpose: Returns a PlanarBox
|
||||
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aName : HAsciiString from TCollection;
|
||||
aSizeInX : Real from Standard;
|
||||
aSizeInY : Real from Standard) is redefined;
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aName : HAsciiString from TCollection;
|
||||
aSizeInX : Real from Standard;
|
||||
aSizeInY : Real from Standard;
|
||||
aPlacement : Axis2Placement from StepGeom) is virtual;
|
||||
|
@@ -24,15 +24,15 @@ uses
|
||||
HAsciiString from TCollection
|
||||
is
|
||||
|
||||
Create returns mutable PlanarExtent;
|
||||
Create returns PlanarExtent;
|
||||
---Purpose: Returns a PlanarExtent
|
||||
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection) is redefined;
|
||||
aName : HAsciiString from TCollection) is redefined;
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aName : HAsciiString from TCollection;
|
||||
aSizeInX : Real from Standard;
|
||||
aSizeInY : Real from Standard) is virtual;
|
||||
|
||||
|
@@ -26,25 +26,25 @@ uses
|
||||
Colour from StepVisual
|
||||
is
|
||||
|
||||
Create returns mutable PointStyle;
|
||||
Create returns PointStyle;
|
||||
---Purpose: Returns a PointStyle
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aName : HAsciiString from TCollection;
|
||||
aMarker : MarkerSelect from StepVisual;
|
||||
aMarkerSize : SizeSelect from StepBasic;
|
||||
aMarkerColour : mutable Colour from StepVisual) is virtual;
|
||||
aMarkerColour : Colour from StepVisual) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetName(me : mutable; aName : mutable HAsciiString);
|
||||
Name (me) returns mutable HAsciiString;
|
||||
SetName(me : mutable; aName : HAsciiString);
|
||||
Name (me) returns HAsciiString;
|
||||
SetMarker(me : mutable; aMarker : MarkerSelect);
|
||||
Marker (me) returns MarkerSelect;
|
||||
SetMarkerSize(me : mutable; aMarkerSize : SizeSelect);
|
||||
MarkerSize (me) returns SizeSelect;
|
||||
SetMarkerColour(me : mutable; aMarkerColour : mutable Colour);
|
||||
MarkerColour (me) returns mutable Colour;
|
||||
SetMarkerColour(me : mutable; aMarkerColour : Colour);
|
||||
MarkerColour (me) returns Colour;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -27,7 +27,7 @@ uses
|
||||
PreDefinedItem from StepVisual
|
||||
is
|
||||
|
||||
Create returns mutable PreDefinedColour;
|
||||
Create returns PreDefinedColour;
|
||||
---Purpose: Returns a PreDefinedColour
|
||||
|
||||
SetPreDefinedItem (me: mutable; item: PreDefinedItem from StepVisual);
|
||||
|
@@ -23,7 +23,7 @@ uses
|
||||
HAsciiString from TCollection
|
||||
is
|
||||
|
||||
Create returns mutable PreDefinedCurveFont;
|
||||
Create returns PreDefinedCurveFont;
|
||||
---Purpose: Returns a PreDefinedCurveFont
|
||||
|
||||
|
||||
|
@@ -23,16 +23,16 @@ uses
|
||||
HAsciiString from TCollection
|
||||
is
|
||||
|
||||
Create returns mutable PreDefinedItem;
|
||||
Create returns PreDefinedItem;
|
||||
---Purpose: Returns a PreDefinedItem
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection) is virtual;
|
||||
aName : HAsciiString from TCollection) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetName(me : mutable; aName : mutable HAsciiString);
|
||||
Name (me) returns mutable HAsciiString;
|
||||
SetName(me : mutable; aName : HAsciiString);
|
||||
Name (me) returns HAsciiString;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -23,7 +23,7 @@ uses
|
||||
HAsciiString from TCollection
|
||||
is
|
||||
|
||||
Create returns mutable PreDefinedTextFont;
|
||||
Create returns PreDefinedTextFont;
|
||||
---Purpose: Returns a PreDefinedTextFont
|
||||
|
||||
|
||||
|
@@ -25,7 +25,7 @@ uses
|
||||
RepresentationContext from StepRepr
|
||||
is
|
||||
|
||||
Create returns mutable PresentationArea;
|
||||
Create returns PresentationArea;
|
||||
---Purpose: Returns a PresentationArea
|
||||
|
||||
|
||||
|
@@ -25,22 +25,22 @@ uses
|
||||
LayeredItem from StepVisual
|
||||
is
|
||||
|
||||
Create returns mutable PresentationLayerAssignment;
|
||||
Create returns PresentationLayerAssignment;
|
||||
---Purpose: Returns a PresentationLayerAssignment
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aDescription : mutable HAsciiString from TCollection;
|
||||
aAssignedItems : mutable HArray1OfLayeredItem from StepVisual) is virtual;
|
||||
aName : HAsciiString from TCollection;
|
||||
aDescription : HAsciiString from TCollection;
|
||||
aAssignedItems : HArray1OfLayeredItem from StepVisual) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetName(me : mutable; aName : mutable HAsciiString);
|
||||
Name (me) returns mutable HAsciiString;
|
||||
SetDescription(me : mutable; aDescription : mutable HAsciiString);
|
||||
Description (me) returns mutable HAsciiString;
|
||||
SetAssignedItems(me : mutable; aAssignedItems : mutable HArray1OfLayeredItem);
|
||||
AssignedItems (me) returns mutable HArray1OfLayeredItem;
|
||||
SetName(me : mutable; aName : HAsciiString);
|
||||
Name (me) returns HAsciiString;
|
||||
SetDescription(me : mutable; aDescription : HAsciiString);
|
||||
Description (me) returns HAsciiString;
|
||||
SetAssignedItems(me : mutable; aAssignedItems : HArray1OfLayeredItem);
|
||||
AssignedItems (me) returns HArray1OfLayeredItem;
|
||||
AssignedItemsValue (me; num : Integer) returns LayeredItem;
|
||||
NbAssignedItems (me) returns Integer;
|
||||
|
||||
|
@@ -25,7 +25,7 @@ uses
|
||||
RepresentationContext from StepRepr
|
||||
is
|
||||
|
||||
Create returns mutable PresentationRepresentation;
|
||||
Create returns PresentationRepresentation;
|
||||
---Purpose: Returns a PresentationRepresentation
|
||||
|
||||
|
||||
|
@@ -20,7 +20,7 @@ inherits TShared from MMgt
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable PresentationSet;
|
||||
Create returns PresentationSet;
|
||||
---Purpose: Returns a PresentationSet
|
||||
|
||||
|
||||
|
@@ -24,19 +24,19 @@ uses
|
||||
PlanarBox from StepVisual
|
||||
is
|
||||
|
||||
Create returns mutable PresentationSize;
|
||||
Create returns PresentationSize;
|
||||
---Purpose: Returns a PresentationSize
|
||||
|
||||
Init (me : mutable;
|
||||
aUnit : PresentationSizeAssignmentSelect from StepVisual;
|
||||
aSize : mutable PlanarBox from StepVisual) is virtual;
|
||||
aSize : PlanarBox from StepVisual) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetUnit(me : mutable; aUnit : PresentationSizeAssignmentSelect);
|
||||
Unit (me) returns PresentationSizeAssignmentSelect;
|
||||
SetSize(me : mutable; aSize : mutable PlanarBox);
|
||||
Size (me) returns mutable PlanarBox;
|
||||
SetSize(me : mutable; aSize : PlanarBox);
|
||||
Size (me) returns PlanarBox;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -24,16 +24,16 @@ uses
|
||||
PresentationStyleSelect from StepVisual
|
||||
is
|
||||
|
||||
Create returns mutable PresentationStyleAssignment;
|
||||
Create returns PresentationStyleAssignment;
|
||||
---Purpose: Returns a PresentationStyleAssignment
|
||||
|
||||
Init (me : mutable;
|
||||
aStyles : mutable HArray1OfPresentationStyleSelect from StepVisual) is virtual;
|
||||
aStyles : HArray1OfPresentationStyleSelect from StepVisual) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetStyles(me : mutable; aStyles : mutable HArray1OfPresentationStyleSelect);
|
||||
Styles (me) returns mutable HArray1OfPresentationStyleSelect;
|
||||
SetStyles(me : mutable; aStyles : HArray1OfPresentationStyleSelect);
|
||||
Styles (me) returns HArray1OfPresentationStyleSelect;
|
||||
StylesValue (me; num : Integer) returns PresentationStyleSelect;
|
||||
NbStyles (me) returns Integer;
|
||||
|
||||
|
@@ -24,15 +24,15 @@ uses
|
||||
HArray1OfPresentationStyleSelect from StepVisual
|
||||
is
|
||||
|
||||
Create returns mutable PresentationStyleByContext;
|
||||
Create returns PresentationStyleByContext;
|
||||
---Purpose: Returns a PresentationStyleByContext
|
||||
|
||||
|
||||
Init (me : mutable;
|
||||
aStyles : mutable HArray1OfPresentationStyleSelect from StepVisual) is redefined;
|
||||
aStyles : HArray1OfPresentationStyleSelect from StepVisual) is redefined;
|
||||
|
||||
Init (me : mutable;
|
||||
aStyles : mutable HArray1OfPresentationStyleSelect from StepVisual;
|
||||
aStyles : HArray1OfPresentationStyleSelect from StepVisual;
|
||||
aStyleContext : StyleContextSelect from StepVisual) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
@@ -25,7 +25,7 @@ uses
|
||||
RepresentationContext from StepRepr
|
||||
is
|
||||
|
||||
Create returns mutable PresentationView;
|
||||
Create returns PresentationView;
|
||||
---Purpose: Returns a PresentationView
|
||||
|
||||
|
||||
|
@@ -24,7 +24,7 @@ uses
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable PresentedItemRepresentation;
|
||||
Create returns PresentedItemRepresentation;
|
||||
|
||||
Init (me : mutable;
|
||||
aPresentation : PresentationRepresentationSelect from StepVisual;
|
||||
|
@@ -25,26 +25,26 @@ uses
|
||||
HAsciiString from TCollection
|
||||
is
|
||||
|
||||
Create returns mutable StyledItem;
|
||||
Create returns StyledItem;
|
||||
---Purpose: Returns a StyledItem
|
||||
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection) is redefined;
|
||||
aName : HAsciiString from TCollection) is redefined;
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aStyles : mutable HArray1OfPresentationStyleAssignment from StepVisual;
|
||||
aItem : mutable RepresentationItem from StepRepr) is virtual;
|
||||
aName : HAsciiString from TCollection;
|
||||
aStyles : HArray1OfPresentationStyleAssignment from StepVisual;
|
||||
aItem : RepresentationItem from StepRepr) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetStyles(me : mutable; aStyles : mutable HArray1OfPresentationStyleAssignment);
|
||||
Styles (me) returns mutable HArray1OfPresentationStyleAssignment;
|
||||
StylesValue (me; num : Integer) returns mutable PresentationStyleAssignment;
|
||||
SetStyles(me : mutable; aStyles : HArray1OfPresentationStyleAssignment);
|
||||
Styles (me) returns HArray1OfPresentationStyleAssignment;
|
||||
StylesValue (me; num : Integer) returns PresentationStyleAssignment;
|
||||
NbStyles (me) returns Integer;
|
||||
SetItem(me : mutable; aItem : mutable RepresentationItem);
|
||||
Item (me) returns mutable RepresentationItem;
|
||||
SetItem(me : mutable; aItem : RepresentationItem);
|
||||
Item (me) returns RepresentationItem;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -25,19 +25,19 @@ uses
|
||||
SurfaceStyleElementSelect from StepVisual
|
||||
is
|
||||
|
||||
Create returns mutable SurfaceSideStyle;
|
||||
Create returns SurfaceSideStyle;
|
||||
---Purpose: Returns a SurfaceSideStyle
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aStyles : mutable HArray1OfSurfaceStyleElementSelect from StepVisual) is virtual;
|
||||
aName : HAsciiString from TCollection;
|
||||
aStyles : HArray1OfSurfaceStyleElementSelect from StepVisual) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetName(me : mutable; aName : mutable HAsciiString);
|
||||
Name (me) returns mutable HAsciiString;
|
||||
SetStyles(me : mutable; aStyles : mutable HArray1OfSurfaceStyleElementSelect);
|
||||
Styles (me) returns mutable HArray1OfSurfaceStyleElementSelect;
|
||||
SetName(me : mutable; aName : HAsciiString);
|
||||
Name (me) returns HAsciiString;
|
||||
SetStyles(me : mutable; aStyles : HArray1OfSurfaceStyleElementSelect);
|
||||
Styles (me) returns HArray1OfSurfaceStyleElementSelect;
|
||||
StylesValue (me; num : Integer) returns SurfaceStyleElementSelect;
|
||||
NbStyles (me) returns Integer;
|
||||
|
||||
|
@@ -23,16 +23,16 @@ uses
|
||||
CurveStyle from StepVisual
|
||||
is
|
||||
|
||||
Create returns mutable SurfaceStyleBoundary;
|
||||
Create returns SurfaceStyleBoundary;
|
||||
---Purpose: Returns a SurfaceStyleBoundary
|
||||
|
||||
Init (me : mutable;
|
||||
aStyleOfBoundary : mutable CurveStyle from StepVisual) is virtual;
|
||||
aStyleOfBoundary : CurveStyle from StepVisual) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetStyleOfBoundary(me : mutable; aStyleOfBoundary : mutable CurveStyle);
|
||||
StyleOfBoundary (me) returns mutable CurveStyle;
|
||||
SetStyleOfBoundary(me : mutable; aStyleOfBoundary : CurveStyle);
|
||||
StyleOfBoundary (me) returns CurveStyle;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -23,16 +23,16 @@ uses
|
||||
CurveStyle from StepVisual
|
||||
is
|
||||
|
||||
Create returns mutable SurfaceStyleControlGrid;
|
||||
Create returns SurfaceStyleControlGrid;
|
||||
---Purpose: Returns a SurfaceStyleControlGrid
|
||||
|
||||
Init (me : mutable;
|
||||
aStyleOfControlGrid : mutable CurveStyle from StepVisual) is virtual;
|
||||
aStyleOfControlGrid : CurveStyle from StepVisual) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetStyleOfControlGrid(me : mutable; aStyleOfControlGrid : mutable CurveStyle);
|
||||
StyleOfControlGrid (me) returns mutable CurveStyle;
|
||||
SetStyleOfControlGrid(me : mutable; aStyleOfControlGrid : CurveStyle);
|
||||
StyleOfControlGrid (me) returns CurveStyle;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -23,16 +23,16 @@ uses
|
||||
FillAreaStyle from StepVisual
|
||||
is
|
||||
|
||||
Create returns mutable SurfaceStyleFillArea;
|
||||
Create returns SurfaceStyleFillArea;
|
||||
---Purpose: Returns a SurfaceStyleFillArea
|
||||
|
||||
Init (me : mutable;
|
||||
aFillArea : mutable FillAreaStyle from StepVisual) is virtual;
|
||||
aFillArea : FillAreaStyle from StepVisual) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetFillArea(me : mutable; aFillArea : mutable FillAreaStyle);
|
||||
FillArea (me) returns mutable FillAreaStyle;
|
||||
SetFillArea(me : mutable; aFillArea : FillAreaStyle);
|
||||
FillArea (me) returns FillAreaStyle;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -26,18 +26,18 @@ uses
|
||||
Integer from Standard
|
||||
is
|
||||
|
||||
Create returns mutable SurfaceStyleParameterLine;
|
||||
Create returns SurfaceStyleParameterLine;
|
||||
---Purpose: Returns a SurfaceStyleParameterLine
|
||||
|
||||
Init (me : mutable;
|
||||
aStyleOfParameterLines : mutable CurveStyle from StepVisual;
|
||||
aStyleOfParameterLines : CurveStyle from StepVisual;
|
||||
aDirectionCounts : HArray1OfDirectionCountSelect from StepVisual)
|
||||
is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetStyleOfParameterLines(me : mutable; aStyleOfParameterLines : mutable CurveStyle);
|
||||
StyleOfParameterLines (me) returns mutable CurveStyle;
|
||||
SetStyleOfParameterLines(me : mutable; aStyleOfParameterLines : CurveStyle);
|
||||
StyleOfParameterLines (me) returns CurveStyle;
|
||||
SetDirectionCounts(me : mutable; aDirectionCounts : HArray1OfDirectionCountSelect from StepVisual);
|
||||
DirectionCounts (me) returns HArray1OfDirectionCountSelect from StepVisual;
|
||||
DirectionCountsValue (me; num : Integer) returns DirectionCountSelect from StepVisual;
|
||||
|
@@ -23,16 +23,16 @@ uses
|
||||
CurveStyle from StepVisual
|
||||
is
|
||||
|
||||
Create returns mutable SurfaceStyleSegmentationCurve;
|
||||
Create returns SurfaceStyleSegmentationCurve;
|
||||
---Purpose: Returns a SurfaceStyleSegmentationCurve
|
||||
|
||||
Init (me : mutable;
|
||||
aStyleOfSegmentationCurve : mutable CurveStyle from StepVisual) is virtual;
|
||||
aStyleOfSegmentationCurve : CurveStyle from StepVisual) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetStyleOfSegmentationCurve(me : mutable; aStyleOfSegmentationCurve : mutable CurveStyle);
|
||||
StyleOfSegmentationCurve (me) returns mutable CurveStyle;
|
||||
SetStyleOfSegmentationCurve(me : mutable; aStyleOfSegmentationCurve : CurveStyle);
|
||||
StyleOfSegmentationCurve (me) returns CurveStyle;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -23,16 +23,16 @@ uses
|
||||
CurveStyle from StepVisual
|
||||
is
|
||||
|
||||
Create returns mutable SurfaceStyleSilhouette;
|
||||
Create returns SurfaceStyleSilhouette;
|
||||
---Purpose: Returns a SurfaceStyleSilhouette
|
||||
|
||||
Init (me : mutable;
|
||||
aStyleOfSilhouette : mutable CurveStyle from StepVisual) is virtual;
|
||||
aStyleOfSilhouette : CurveStyle from StepVisual) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetStyleOfSilhouette(me : mutable; aStyleOfSilhouette : mutable CurveStyle);
|
||||
StyleOfSilhouette (me) returns mutable CurveStyle;
|
||||
SetStyleOfSilhouette(me : mutable; aStyleOfSilhouette : CurveStyle);
|
||||
StyleOfSilhouette (me) returns CurveStyle;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -24,19 +24,19 @@ uses
|
||||
SurfaceSideStyle from StepVisual
|
||||
is
|
||||
|
||||
Create returns mutable SurfaceStyleUsage;
|
||||
Create returns SurfaceStyleUsage;
|
||||
---Purpose: Returns a SurfaceStyleUsage
|
||||
|
||||
Init (me : mutable;
|
||||
aSide : SurfaceSide from StepVisual;
|
||||
aStyle : mutable SurfaceSideStyle from StepVisual) is virtual;
|
||||
aStyle : SurfaceSideStyle from StepVisual) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetSide(me : mutable; aSide : SurfaceSide);
|
||||
Side (me) returns SurfaceSide;
|
||||
SetStyle(me : mutable; aStyle : mutable SurfaceSideStyle);
|
||||
Style (me) returns mutable SurfaceSideStyle;
|
||||
SetStyle(me : mutable; aStyle : SurfaceSideStyle);
|
||||
Style (me) returns SurfaceSideStyle;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -25,7 +25,7 @@ uses
|
||||
RepresentationContext from StepRepr
|
||||
is
|
||||
|
||||
Create returns mutable Template;
|
||||
Create returns Template;
|
||||
---Purpose: Returns a Template
|
||||
|
||||
|
||||
|
@@ -25,7 +25,7 @@ uses
|
||||
RepresentationItem from StepRepr
|
||||
is
|
||||
|
||||
Create returns mutable TemplateInstance;
|
||||
Create returns TemplateInstance;
|
||||
---Purpose: Returns a TemplateInstance
|
||||
|
||||
|
||||
|
@@ -26,29 +26,29 @@ uses
|
||||
FontSelect from StepVisual
|
||||
is
|
||||
|
||||
Create returns mutable TextLiteral;
|
||||
Create returns TextLiteral;
|
||||
---Purpose: Returns a TextLiteral
|
||||
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection) is redefined;
|
||||
aName : HAsciiString from TCollection) is redefined;
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aLiteral : mutable HAsciiString from TCollection;
|
||||
aName : HAsciiString from TCollection;
|
||||
aLiteral : HAsciiString from TCollection;
|
||||
aPlacement : Axis2Placement from StepGeom;
|
||||
aAlignment : mutable HAsciiString from TCollection;
|
||||
aAlignment : HAsciiString from TCollection;
|
||||
aPath : TextPath from StepVisual;
|
||||
aFont : FontSelect from StepVisual) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetLiteral(me : mutable; aLiteral : mutable HAsciiString);
|
||||
Literal (me) returns mutable HAsciiString;
|
||||
SetLiteral(me : mutable; aLiteral : HAsciiString);
|
||||
Literal (me) returns HAsciiString;
|
||||
SetPlacement(me : mutable; aPlacement : Axis2Placement);
|
||||
Placement (me) returns Axis2Placement;
|
||||
SetAlignment(me : mutable; aAlignment : mutable HAsciiString);
|
||||
Alignment (me) returns mutable HAsciiString;
|
||||
SetAlignment(me : mutable; aAlignment : HAsciiString);
|
||||
Alignment (me) returns HAsciiString;
|
||||
SetPath(me : mutable; aPath : TextPath);
|
||||
Path (me) returns TextPath;
|
||||
SetFont(me : mutable; aFont : FontSelect);
|
||||
|
@@ -24,19 +24,19 @@ uses
|
||||
TextStyleForDefinedFont from StepVisual
|
||||
is
|
||||
|
||||
Create returns mutable TextStyle;
|
||||
Create returns TextStyle;
|
||||
---Purpose: Returns a TextStyle
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aCharacterAppearance : mutable TextStyleForDefinedFont from StepVisual) is virtual;
|
||||
aName : HAsciiString from TCollection;
|
||||
aCharacterAppearance : TextStyleForDefinedFont from StepVisual) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetName(me : mutable; aName : mutable HAsciiString);
|
||||
Name (me) returns mutable HAsciiString;
|
||||
SetCharacterAppearance(me : mutable; aCharacterAppearance : mutable TextStyleForDefinedFont);
|
||||
CharacterAppearance (me) returns mutable TextStyleForDefinedFont;
|
||||
SetName(me : mutable; aName : HAsciiString);
|
||||
Name (me) returns HAsciiString;
|
||||
SetCharacterAppearance(me : mutable; aCharacterAppearance : TextStyleForDefinedFont);
|
||||
CharacterAppearance (me) returns TextStyleForDefinedFont;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -23,16 +23,16 @@ uses
|
||||
Colour from StepVisual
|
||||
is
|
||||
|
||||
Create returns mutable TextStyleForDefinedFont;
|
||||
Create returns TextStyleForDefinedFont;
|
||||
---Purpose: Returns a TextStyleForDefinedFont
|
||||
|
||||
Init (me : mutable;
|
||||
aTextColour : mutable Colour from StepVisual) is virtual;
|
||||
aTextColour : Colour from StepVisual) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetTextColour(me : mutable; aTextColour : mutable Colour);
|
||||
TextColour (me) returns mutable Colour;
|
||||
SetTextColour(me : mutable; aTextColour : Colour);
|
||||
TextColour (me) returns Colour;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -26,17 +26,17 @@ uses
|
||||
TextStyleForDefinedFont from StepVisual
|
||||
is
|
||||
|
||||
Create returns mutable TextStyleWithBoxCharacteristics;
|
||||
Create returns TextStyleWithBoxCharacteristics;
|
||||
---Purpose: Returns a TextStyleWithBoxCharacteristics
|
||||
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aCharacterAppearance : mutable TextStyleForDefinedFont from StepVisual) is redefined;
|
||||
aName : HAsciiString from TCollection;
|
||||
aCharacterAppearance : TextStyleForDefinedFont from StepVisual) is redefined;
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aCharacterAppearance : mutable TextStyleForDefinedFont from StepVisual;
|
||||
aName : HAsciiString from TCollection;
|
||||
aCharacterAppearance : TextStyleForDefinedFont from StepVisual;
|
||||
aCharacteristics : HArray1OfBoxCharacteristicSelect) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
@@ -27,26 +27,26 @@ uses
|
||||
PlanarBox from StepVisual
|
||||
is
|
||||
|
||||
Create returns mutable ViewVolume;
|
||||
Create returns ViewVolume;
|
||||
---Purpose: Returns a ViewVolume
|
||||
|
||||
Init (me : mutable;
|
||||
aProjectionType : CentralOrParallel from StepVisual;
|
||||
aProjectionPoint : mutable CartesianPoint from StepGeom;
|
||||
aProjectionPoint : CartesianPoint from StepGeom;
|
||||
aViewPlaneDistance : Real from Standard;
|
||||
aFrontPlaneDistance : Real from Standard;
|
||||
aFrontPlaneClipping : Boolean from Standard;
|
||||
aBackPlaneDistance : Real from Standard;
|
||||
aBackPlaneClipping : Boolean from Standard;
|
||||
aViewVolumeSidesClipping : Boolean from Standard;
|
||||
aViewWindow : mutable PlanarBox from StepVisual) is virtual;
|
||||
aViewWindow : PlanarBox from StepVisual) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetProjectionType(me : mutable; aProjectionType : CentralOrParallel);
|
||||
ProjectionType (me) returns CentralOrParallel;
|
||||
SetProjectionPoint(me : mutable; aProjectionPoint : mutable CartesianPoint);
|
||||
ProjectionPoint (me) returns mutable CartesianPoint;
|
||||
SetProjectionPoint(me : mutable; aProjectionPoint : CartesianPoint);
|
||||
ProjectionPoint (me) returns CartesianPoint;
|
||||
SetViewPlaneDistance(me : mutable; aViewPlaneDistance : Real);
|
||||
ViewPlaneDistance (me) returns Real;
|
||||
SetFrontPlaneDistance(me : mutable; aFrontPlaneDistance : Real);
|
||||
@@ -59,8 +59,8 @@ is
|
||||
BackPlaneClipping (me) returns Boolean;
|
||||
SetViewVolumeSidesClipping(me : mutable; aViewVolumeSidesClipping : Boolean);
|
||||
ViewVolumeSidesClipping (me) returns Boolean;
|
||||
SetViewWindow(me : mutable; aViewWindow : mutable PlanarBox);
|
||||
ViewWindow (me) returns mutable PlanarBox;
|
||||
SetViewWindow(me : mutable; aViewWindow : PlanarBox);
|
||||
ViewWindow (me) returns PlanarBox;
|
||||
|
||||
fields
|
||||
|
||||
|
Reference in New Issue
Block a user