1
0
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:
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

@@ -26,25 +26,25 @@ uses
CartesianPoint from StepGeom
is
Create returns mutable Axis1Placement;
Create returns Axis1Placement;
---Purpose: Returns a Axis1Placement
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aLocation : mutable CartesianPoint from StepGeom) is redefined;
aName : HAsciiString from TCollection;
aLocation : CartesianPoint from StepGeom) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aLocation : mutable CartesianPoint from StepGeom;
aName : HAsciiString from TCollection;
aLocation : CartesianPoint from StepGeom;
hasAaxis : Boolean from Standard;
aAxis : mutable Direction from StepGeom) is virtual;
aAxis : Direction from StepGeom) is virtual;
-- Specific Methods for Field Data Access --
SetAxis(me : mutable; aAxis : mutable Direction);
SetAxis(me : mutable; aAxis : Direction);
UnSetAxis (me:mutable);
Axis (me) returns mutable Direction;
Axis (me) returns Direction;
HasAxis (me) returns Boolean;
fields

View File

@@ -26,25 +26,25 @@ uses
CartesianPoint from StepGeom
is
Create returns mutable Axis2Placement2d;
Create returns Axis2Placement2d;
---Purpose: Returns a Axis2Placement2d
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aLocation : mutable CartesianPoint from StepGeom) is redefined;
aName : HAsciiString from TCollection;
aLocation : CartesianPoint from StepGeom) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aLocation : mutable CartesianPoint from StepGeom;
aName : HAsciiString from TCollection;
aLocation : CartesianPoint from StepGeom;
hasArefDirection : Boolean from Standard;
aRefDirection : mutable Direction from StepGeom) is virtual;
aRefDirection : Direction from StepGeom) is virtual;
-- Specific Methods for Field Data Access --
SetRefDirection(me : mutable; aRefDirection : mutable Direction);
SetRefDirection(me : mutable; aRefDirection : Direction);
UnSetRefDirection (me:mutable);
RefDirection (me) returns mutable Direction;
RefDirection (me) returns Direction;
HasRefDirection (me) returns Boolean;
fields

View File

@@ -26,31 +26,31 @@ uses
CartesianPoint from StepGeom
is
Create returns mutable Axis2Placement3d;
Create returns Axis2Placement3d;
---Purpose: Returns a Axis2Placement3d
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aLocation : mutable CartesianPoint from StepGeom) is redefined;
aName : HAsciiString from TCollection;
aLocation : CartesianPoint from StepGeom) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aLocation : mutable CartesianPoint from StepGeom;
aName : HAsciiString from TCollection;
aLocation : CartesianPoint from StepGeom;
hasAaxis : Boolean from Standard;
aAxis : mutable Direction from StepGeom;
aAxis : Direction from StepGeom;
hasArefDirection : Boolean from Standard;
aRefDirection : mutable Direction from StepGeom) is virtual;
aRefDirection : Direction from StepGeom) is virtual;
-- Specific Methods for Field Data Access --
SetAxis(me : mutable; aAxis : mutable Direction);
SetAxis(me : mutable; aAxis : Direction);
UnSetAxis (me:mutable);
Axis (me) returns mutable Direction;
Axis (me) returns Direction;
HasAxis (me) returns Boolean;
SetRefDirection(me : mutable; aRefDirection : mutable Direction);
SetRefDirection(me : mutable; aRefDirection : Direction);
UnSetRefDirection (me:mutable);
RefDirection (me) returns mutable Direction;
RefDirection (me) returns Direction;
HasRefDirection (me) returns Boolean;
fields

View File

@@ -33,17 +33,17 @@ uses
HAsciiString from TCollection
is
Create returns mutable BSplineCurve;
Create returns BSplineCurve;
---Purpose: Returns a BSplineCurve
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;
aDegree : Integer from Standard;
aControlPointsList : mutable HArray1OfCartesianPoint from StepGeom;
aControlPointsList : HArray1OfCartesianPoint from StepGeom;
aCurveForm : BSplineCurveForm from StepGeom;
aClosedCurve : Logical from StepData;
aSelfIntersect : Logical from StepData) is virtual;
@@ -52,9 +52,9 @@ is
SetDegree(me : mutable; aDegree : Integer);
Degree (me) returns Integer;
SetControlPointsList(me : mutable; aControlPointsList : mutable HArray1OfCartesianPoint);
ControlPointsList (me) returns mutable HArray1OfCartesianPoint;
ControlPointsListValue (me; num : Integer) returns mutable CartesianPoint;
SetControlPointsList(me : mutable; aControlPointsList : HArray1OfCartesianPoint);
ControlPointsList (me) returns HArray1OfCartesianPoint;
ControlPointsListValue (me; num : Integer) returns CartesianPoint;
NbControlPointsList (me) returns Integer;
SetCurveForm(me : mutable; aCurveForm : BSplineCurveForm);
CurveForm (me) returns BSplineCurveForm;

View File

@@ -31,37 +31,37 @@ uses
Logical from StepData
is
Create returns mutable BSplineCurveWithKnots;
Create returns BSplineCurveWithKnots;
---Purpose: Returns a BSplineCurveWithKnots
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
aDegree : Integer from Standard;
aControlPointsList : mutable HArray1OfCartesianPoint from StepGeom;
aControlPointsList : HArray1OfCartesianPoint from StepGeom;
aCurveForm : BSplineCurveForm from StepGeom;
aClosedCurve : Logical from StepData;
aSelfIntersect : Logical from StepData) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
aDegree : Integer from Standard;
aControlPointsList : mutable HArray1OfCartesianPoint from StepGeom;
aControlPointsList : HArray1OfCartesianPoint from StepGeom;
aCurveForm : BSplineCurveForm from StepGeom;
aClosedCurve : Logical from StepData;
aSelfIntersect : Logical from StepData;
aKnotMultiplicities : mutable HArray1OfInteger from TColStd;
aKnots : mutable HArray1OfReal from TColStd;
aKnotMultiplicities : HArray1OfInteger from TColStd;
aKnots : HArray1OfReal from TColStd;
aKnotSpec : KnotType from StepGeom) is virtual;
-- Specific Methods for Field Data Access --
SetKnotMultiplicities(me : mutable; aKnotMultiplicities : mutable HArray1OfInteger);
KnotMultiplicities (me) returns mutable HArray1OfInteger;
SetKnotMultiplicities(me : mutable; aKnotMultiplicities : HArray1OfInteger);
KnotMultiplicities (me) returns HArray1OfInteger;
KnotMultiplicitiesValue (me; num : Integer) returns Integer;
NbKnotMultiplicities (me) returns Integer;
SetKnots(me : mutable; aKnots : mutable HArray1OfReal);
Knots (me) returns mutable HArray1OfReal;
SetKnots(me : mutable; aKnots : HArray1OfReal);
Knots (me) returns HArray1OfReal;
KnotsValue (me; num : Integer) returns Real;
NbKnots (me) returns Integer;
SetKnotSpec(me : mutable; aKnotSpec : KnotType);

View File

@@ -36,55 +36,55 @@ uses
Real from Standard
is
Create returns mutable BSplineCurveWithKnotsAndRationalBSplineCurve;
Create returns BSplineCurveWithKnotsAndRationalBSplineCurve;
---Purpose: Returns a BSplineCurveWithKnotsAndRationalBSplineCurve
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
aDegree : Integer from Standard;
aControlPointsList : mutable HArray1OfCartesianPoint from StepGeom;
aControlPointsList : HArray1OfCartesianPoint from StepGeom;
aCurveForm : BSplineCurveForm from StepGeom;
aClosedCurve : Logical from StepData;
aSelfIntersect : Logical from StepData) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
aDegree : Integer from Standard;
aControlPointsList : mutable HArray1OfCartesianPoint from StepGeom;
aControlPointsList : HArray1OfCartesianPoint from StepGeom;
aCurveForm : BSplineCurveForm from StepGeom;
aClosedCurve : Logical from StepData;
aSelfIntersect : Logical from StepData;
aBSplineCurveWithKnots : mutable BSplineCurveWithKnots from StepGeom;
aRationalBSplineCurve : mutable RationalBSplineCurve from StepGeom) is virtual;
aBSplineCurveWithKnots : BSplineCurveWithKnots from StepGeom;
aRationalBSplineCurve : RationalBSplineCurve from StepGeom) is virtual;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
aDegree : Integer from Standard;
aControlPointsList : mutable HArray1OfCartesianPoint from StepGeom;
aControlPointsList : HArray1OfCartesianPoint from StepGeom;
aCurveForm : BSplineCurveForm from StepGeom;
aClosedCurve : Logical from StepData;
aSelfIntersect : Logical from StepData;
aKnotMultiplicities : mutable HArray1OfInteger from TColStd;
aKnots : mutable HArray1OfReal from TColStd;
aKnotMultiplicities : HArray1OfInteger from TColStd;
aKnots : HArray1OfReal from TColStd;
aKnotSpec : KnotType from StepGeom;
aWeightsData : mutable HArray1OfReal from TColStd) is virtual;
aWeightsData : HArray1OfReal from TColStd) is virtual;
-- Specific Methods for Field Data Access --
SetBSplineCurveWithKnots(me : mutable; aBSplineCurveWithKnots : mutable BSplineCurveWithKnots);
BSplineCurveWithKnots (me) returns mutable BSplineCurveWithKnots;
SetRationalBSplineCurve(me : mutable; aRationalBSplineCurve : mutable RationalBSplineCurve);
RationalBSplineCurve (me) returns mutable RationalBSplineCurve;
SetBSplineCurveWithKnots(me : mutable; aBSplineCurveWithKnots : BSplineCurveWithKnots);
BSplineCurveWithKnots (me) returns BSplineCurveWithKnots;
SetRationalBSplineCurve(me : mutable; aRationalBSplineCurve : RationalBSplineCurve);
RationalBSplineCurve (me) returns RationalBSplineCurve;
-- Specific Methods for ANDOR Field Data Access --
SetKnotMultiplicities(me : mutable; aKnotMultiplicities : mutable HArray1OfInteger);
KnotMultiplicities (me) returns mutable HArray1OfInteger;
SetKnotMultiplicities(me : mutable; aKnotMultiplicities : HArray1OfInteger);
KnotMultiplicities (me) returns HArray1OfInteger;
KnotMultiplicitiesValue (me; num : Integer) returns Integer;
NbKnotMultiplicities (me) returns Integer;
SetKnots(me : mutable; aKnots : mutable HArray1OfReal);
Knots (me) returns mutable HArray1OfReal;
SetKnots(me : mutable; aKnots : HArray1OfReal);
Knots (me) returns HArray1OfReal;
KnotsValue (me; num : Integer) returns Real;
NbKnots (me) returns Integer;
SetKnotSpec(me : mutable; aKnotSpec : KnotType);
@@ -92,8 +92,8 @@ is
-- Specific Methods for ANDOR Field Data Access --
SetWeightsData(me : mutable; aWeightsData : mutable HArray1OfReal);
WeightsData (me) returns mutable HArray1OfReal;
SetWeightsData(me : mutable; aWeightsData : HArray1OfReal);
WeightsData (me) returns HArray1OfReal;
WeightsDataValue (me; num : Integer) returns Real;
NbWeightsData (me) returns Integer;

View File

@@ -33,18 +33,18 @@ uses
HAsciiString from TCollection
is
Create returns mutable BSplineSurface;
Create returns BSplineSurface;
---Purpose: Returns a BSplineSurface
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;
aUDegree : Integer from Standard;
aVDegree : Integer from Standard;
aControlPointsList : mutable HArray2OfCartesianPoint from StepGeom;
aControlPointsList : HArray2OfCartesianPoint from StepGeom;
aSurfaceForm : BSplineSurfaceForm from StepGeom;
aUClosed : Logical from StepData;
aVClosed : Logical from StepData;
@@ -56,9 +56,9 @@ is
UDegree (me) returns Integer;
SetVDegree(me : mutable; aVDegree : Integer);
VDegree (me) returns Integer;
SetControlPointsList(me : mutable; aControlPointsList : mutable HArray2OfCartesianPoint);
ControlPointsList (me) returns mutable HArray2OfCartesianPoint;
ControlPointsListValue (me; num1 : Integer; num2 : Integer) returns mutable CartesianPoint;
SetControlPointsList(me : mutable; aControlPointsList : HArray2OfCartesianPoint);
ControlPointsList (me) returns HArray2OfCartesianPoint;
ControlPointsListValue (me; num1 : Integer; num2 : Integer) returns CartesianPoint;
NbControlPointsListI (me) returns Integer;
NbControlPointsListJ (me) returns Integer;
SetSurfaceForm(me : mutable; aSurfaceForm : BSplineSurfaceForm);

View File

@@ -31,51 +31,51 @@ uses
Logical from StepData
is
Create returns mutable BSplineSurfaceWithKnots;
Create returns BSplineSurfaceWithKnots;
---Purpose: Returns a BSplineSurfaceWithKnots
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
aUDegree : Integer from Standard;
aVDegree : Integer from Standard;
aControlPointsList : mutable HArray2OfCartesianPoint from StepGeom;
aControlPointsList : HArray2OfCartesianPoint from StepGeom;
aSurfaceForm : BSplineSurfaceForm from StepGeom;
aUClosed : Logical from StepData;
aVClosed : Logical from StepData;
aSelfIntersect : Logical from StepData) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
aUDegree : Integer from Standard;
aVDegree : Integer from Standard;
aControlPointsList : mutable HArray2OfCartesianPoint from StepGeom;
aControlPointsList : HArray2OfCartesianPoint from StepGeom;
aSurfaceForm : BSplineSurfaceForm from StepGeom;
aUClosed : Logical from StepData;
aVClosed : Logical from StepData;
aSelfIntersect : Logical from StepData;
aUMultiplicities : mutable HArray1OfInteger from TColStd;
aVMultiplicities : mutable HArray1OfInteger from TColStd;
aUKnots : mutable HArray1OfReal from TColStd;
aVKnots : mutable HArray1OfReal from TColStd;
aUMultiplicities : HArray1OfInteger from TColStd;
aVMultiplicities : HArray1OfInteger from TColStd;
aUKnots : HArray1OfReal from TColStd;
aVKnots : HArray1OfReal from TColStd;
aKnotSpec : KnotType from StepGeom) is virtual;
-- Specific Methods for Field Data Access --
SetUMultiplicities(me : mutable; aUMultiplicities : mutable HArray1OfInteger);
UMultiplicities (me) returns mutable HArray1OfInteger;
SetUMultiplicities(me : mutable; aUMultiplicities : HArray1OfInteger);
UMultiplicities (me) returns HArray1OfInteger;
UMultiplicitiesValue (me; num : Integer) returns Integer;
NbUMultiplicities (me) returns Integer;
SetVMultiplicities(me : mutable; aVMultiplicities : mutable HArray1OfInteger);
VMultiplicities (me) returns mutable HArray1OfInteger;
SetVMultiplicities(me : mutable; aVMultiplicities : HArray1OfInteger);
VMultiplicities (me) returns HArray1OfInteger;
VMultiplicitiesValue (me; num : Integer) returns Integer;
NbVMultiplicities (me) returns Integer;
SetUKnots(me : mutable; aUKnots : mutable HArray1OfReal);
UKnots (me) returns mutable HArray1OfReal;
SetUKnots(me : mutable; aUKnots : HArray1OfReal);
UKnots (me) returns HArray1OfReal;
UKnotsValue (me; num : Integer) returns Real;
NbUKnots (me) returns Integer;
SetVKnots(me : mutable; aVKnots : mutable HArray1OfReal);
VKnots (me) returns mutable HArray1OfReal;
SetVKnots(me : mutable; aVKnots : HArray1OfReal);
VKnots (me) returns HArray1OfReal;
VKnotsValue (me; num : Integer) returns Real;
NbVKnots (me) returns Integer;
SetKnotSpec(me : mutable; aKnotSpec : KnotType);

View File

@@ -36,71 +36,71 @@ uses
KnotType from StepGeom
is
Create returns mutable BSplineSurfaceWithKnotsAndRationalBSplineSurface;
Create returns BSplineSurfaceWithKnotsAndRationalBSplineSurface;
---Purpose: Returns a BSplineSurfaceWithKnotsAndRationalBSplineSurface
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
aUDegree : Integer from Standard;
aVDegree : Integer from Standard;
aControlPointsList : mutable HArray2OfCartesianPoint from StepGeom;
aControlPointsList : HArray2OfCartesianPoint from StepGeom;
aSurfaceForm : BSplineSurfaceForm from StepGeom;
aUClosed : Logical from StepData;
aVClosed : Logical from StepData;
aSelfIntersect : Logical from StepData) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
aUDegree : Integer from Standard;
aVDegree : Integer from Standard;
aControlPointsList : mutable HArray2OfCartesianPoint from StepGeom;
aControlPointsList : HArray2OfCartesianPoint from StepGeom;
aSurfaceForm : BSplineSurfaceForm from StepGeom;
aUClosed : Logical from StepData;
aVClosed : Logical from StepData;
aSelfIntersect : Logical from StepData;
aBSplineSurfaceWithKnots : mutable BSplineSurfaceWithKnots from StepGeom;
aRationalBSplineSurface : mutable RationalBSplineSurface from StepGeom) is virtual;
aBSplineSurfaceWithKnots : BSplineSurfaceWithKnots from StepGeom;
aRationalBSplineSurface : RationalBSplineSurface from StepGeom) is virtual;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
aUDegree : Integer from Standard;
aVDegree : Integer from Standard;
aControlPointsList : mutable HArray2OfCartesianPoint from StepGeom;
aControlPointsList : HArray2OfCartesianPoint from StepGeom;
aSurfaceForm : BSplineSurfaceForm from StepGeom;
aUClosed : Logical from StepData;
aVClosed : Logical from StepData;
aSelfIntersect : Logical from StepData;
aUMultiplicities : mutable HArray1OfInteger from TColStd;
aVMultiplicities : mutable HArray1OfInteger from TColStd;
aUKnots : mutable HArray1OfReal from TColStd;
aVKnots : mutable HArray1OfReal from TColStd;
aUMultiplicities : HArray1OfInteger from TColStd;
aVMultiplicities : HArray1OfInteger from TColStd;
aUKnots : HArray1OfReal from TColStd;
aVKnots : HArray1OfReal from TColStd;
aKnotSpec : KnotType from StepGeom;
aWeightsData : mutable HArray2OfReal from TColStd) is virtual;
aWeightsData : HArray2OfReal from TColStd) is virtual;
-- Specific Methods for Field Data Access --
SetBSplineSurfaceWithKnots(me : mutable; aBSplineSurfaceWithKnots : mutable BSplineSurfaceWithKnots);
BSplineSurfaceWithKnots (me) returns mutable BSplineSurfaceWithKnots;
SetRationalBSplineSurface(me : mutable; aRationalBSplineSurface : mutable RationalBSplineSurface);
RationalBSplineSurface (me) returns mutable RationalBSplineSurface;
SetBSplineSurfaceWithKnots(me : mutable; aBSplineSurfaceWithKnots : BSplineSurfaceWithKnots);
BSplineSurfaceWithKnots (me) returns BSplineSurfaceWithKnots;
SetRationalBSplineSurface(me : mutable; aRationalBSplineSurface : RationalBSplineSurface);
RationalBSplineSurface (me) returns RationalBSplineSurface;
-- Specific Methods for ANDOR Field Data Access --
SetUMultiplicities(me : mutable; aUMultiplicities : mutable HArray1OfInteger);
UMultiplicities (me) returns mutable HArray1OfInteger;
SetUMultiplicities(me : mutable; aUMultiplicities : HArray1OfInteger);
UMultiplicities (me) returns HArray1OfInteger;
UMultiplicitiesValue (me; num : Integer) returns Integer;
NbUMultiplicities (me) returns Integer;
SetVMultiplicities(me : mutable; aVMultiplicities : mutable HArray1OfInteger);
VMultiplicities (me) returns mutable HArray1OfInteger;
SetVMultiplicities(me : mutable; aVMultiplicities : HArray1OfInteger);
VMultiplicities (me) returns HArray1OfInteger;
VMultiplicitiesValue (me; num : Integer) returns Integer;
NbVMultiplicities (me) returns Integer;
SetUKnots(me : mutable; aUKnots : mutable HArray1OfReal);
UKnots (me) returns mutable HArray1OfReal;
SetUKnots(me : mutable; aUKnots : HArray1OfReal);
UKnots (me) returns HArray1OfReal;
UKnotsValue (me; num : Integer) returns Real;
NbUKnots (me) returns Integer;
SetVKnots(me : mutable; aVKnots : mutable HArray1OfReal);
VKnots (me) returns mutable HArray1OfReal;
SetVKnots(me : mutable; aVKnots : HArray1OfReal);
VKnots (me) returns HArray1OfReal;
VKnotsValue (me; num : Integer) returns Real;
NbVKnots (me) returns Integer;
SetKnotSpec(me : mutable; aKnotSpec : KnotType);
@@ -108,8 +108,8 @@ is
-- Specific Methods for ANDOR Field Data Access --
SetWeightsData(me : mutable; aWeightsData : mutable HArray2OfReal);
WeightsData (me) returns mutable HArray2OfReal;
SetWeightsData(me : mutable; aWeightsData : HArray2OfReal);
WeightsData (me) returns HArray2OfReal;
WeightsDataValue (me; num1 : Integer; num2 : Integer) returns Real;
NbWeightsDataI (me) returns Integer;
NbWeightsDataJ (me) returns Integer;

View File

@@ -27,7 +27,7 @@ uses
Logical from StepData
is
Create returns mutable BezierCurve;
Create returns BezierCurve;
---Purpose: Returns a BezierCurve

View File

@@ -34,51 +34,51 @@ uses
Real from Standard
is
Create returns mutable BezierCurveAndRationalBSplineCurve;
Create returns BezierCurveAndRationalBSplineCurve;
---Purpose: Returns a BezierCurveAndRationalBSplineCurve
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
aDegree : Integer from Standard;
aControlPointsList : mutable HArray1OfCartesianPoint from StepGeom;
aControlPointsList : HArray1OfCartesianPoint from StepGeom;
aCurveForm : BSplineCurveForm from StepGeom;
aClosedCurve : Logical from StepData;
aSelfIntersect : Logical from StepData) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
aDegree : Integer from Standard;
aControlPointsList : mutable HArray1OfCartesianPoint from StepGeom;
aControlPointsList : HArray1OfCartesianPoint from StepGeom;
aCurveForm : BSplineCurveForm from StepGeom;
aClosedCurve : Logical from StepData;
aSelfIntersect : Logical from StepData;
aBezierCurve : mutable BezierCurve from StepGeom;
aRationalBSplineCurve : mutable RationalBSplineCurve from StepGeom) is virtual;
aBezierCurve : BezierCurve from StepGeom;
aRationalBSplineCurve : RationalBSplineCurve from StepGeom) is virtual;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
aDegree : Integer from Standard;
aControlPointsList : mutable HArray1OfCartesianPoint from StepGeom;
aControlPointsList : HArray1OfCartesianPoint from StepGeom;
aCurveForm : BSplineCurveForm from StepGeom;
aClosedCurve : Logical from StepData;
aSelfIntersect : Logical from StepData;
aWeightsData : mutable HArray1OfReal from TColStd) is virtual;
aWeightsData : HArray1OfReal from TColStd) is virtual;
-- Specific Methods for Field Data Access --
SetBezierCurve(me : mutable; aBezierCurve : mutable BezierCurve);
BezierCurve (me) returns mutable BezierCurve;
SetRationalBSplineCurve(me : mutable; aRationalBSplineCurve : mutable RationalBSplineCurve);
RationalBSplineCurve (me) returns mutable RationalBSplineCurve;
SetBezierCurve(me : mutable; aBezierCurve : BezierCurve);
BezierCurve (me) returns BezierCurve;
SetRationalBSplineCurve(me : mutable; aRationalBSplineCurve : RationalBSplineCurve);
RationalBSplineCurve (me) returns RationalBSplineCurve;
-- Specific Methods for ANDOR Field Data Access --
-- Specific Methods for ANDOR Field Data Access --
SetWeightsData(me : mutable; aWeightsData : mutable HArray1OfReal);
WeightsData (me) returns mutable HArray1OfReal;
SetWeightsData(me : mutable; aWeightsData : HArray1OfReal);
WeightsData (me) returns HArray1OfReal;
WeightsDataValue (me; num : Integer) returns Real;
NbWeightsData (me) returns Integer;

View File

@@ -27,7 +27,7 @@ uses
Logical from StepData
is
Create returns mutable BezierSurface;
Create returns BezierSurface;
---Purpose: Returns a BezierSurface

View File

@@ -34,57 +34,57 @@ uses
Real from Standard
is
Create returns mutable BezierSurfaceAndRationalBSplineSurface;
Create returns BezierSurfaceAndRationalBSplineSurface;
---Purpose: Returns a BezierSurfaceAndRationalBSplineSurface
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
aUDegree : Integer from Standard;
aVDegree : Integer from Standard;
aControlPointsList : mutable HArray2OfCartesianPoint from StepGeom;
aControlPointsList : HArray2OfCartesianPoint from StepGeom;
aSurfaceForm : BSplineSurfaceForm from StepGeom;
aUClosed : Logical from StepData;
aVClosed : Logical from StepData;
aSelfIntersect : Logical from StepData) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
aUDegree : Integer from Standard;
aVDegree : Integer from Standard;
aControlPointsList : mutable HArray2OfCartesianPoint from StepGeom;
aControlPointsList : HArray2OfCartesianPoint from StepGeom;
aSurfaceForm : BSplineSurfaceForm from StepGeom;
aUClosed : Logical from StepData;
aVClosed : Logical from StepData;
aSelfIntersect : Logical from StepData;
aBezierSurface : mutable BezierSurface from StepGeom;
aRationalBSplineSurface : mutable RationalBSplineSurface from StepGeom) is virtual;
aBezierSurface : BezierSurface from StepGeom;
aRationalBSplineSurface : RationalBSplineSurface from StepGeom) is virtual;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
aUDegree : Integer from Standard;
aVDegree : Integer from Standard;
aControlPointsList : mutable HArray2OfCartesianPoint from StepGeom;
aControlPointsList : HArray2OfCartesianPoint from StepGeom;
aSurfaceForm : BSplineSurfaceForm from StepGeom;
aUClosed : Logical from StepData;
aVClosed : Logical from StepData;
aSelfIntersect : Logical from StepData;
aWeightsData : mutable HArray2OfReal from TColStd) is virtual;
aWeightsData : HArray2OfReal from TColStd) is virtual;
-- Specific Methods for Field Data Access --
SetBezierSurface(me : mutable; aBezierSurface : mutable BezierSurface);
BezierSurface (me) returns mutable BezierSurface;
SetRationalBSplineSurface(me : mutable; aRationalBSplineSurface : mutable RationalBSplineSurface);
RationalBSplineSurface (me) returns mutable RationalBSplineSurface;
SetBezierSurface(me : mutable; aBezierSurface : BezierSurface);
BezierSurface (me) returns BezierSurface;
SetRationalBSplineSurface(me : mutable; aRationalBSplineSurface : RationalBSplineSurface);
RationalBSplineSurface (me) returns RationalBSplineSurface;
-- Specific Methods for ANDOR Field Data Access --
-- Specific Methods for ANDOR Field Data Access --
SetWeightsData(me : mutable; aWeightsData : mutable HArray2OfReal);
WeightsData (me) returns mutable HArray2OfReal;
SetWeightsData(me : mutable; aWeightsData : HArray2OfReal);
WeightsData (me) returns HArray2OfReal;
WeightsDataValue (me; num1 : Integer; num2 : Integer) returns Real;
NbWeightsDataI (me) returns Integer;
NbWeightsDataJ (me) returns Integer;

View File

@@ -25,7 +25,7 @@ uses
Logical from StepData
is
Create returns mutable BoundaryCurve;
Create returns BoundaryCurve;
---Purpose: Returns a BoundaryCurve

View File

@@ -23,7 +23,7 @@ uses
HAsciiString from TCollection
is
Create returns mutable BoundedCurve;
Create returns BoundedCurve;
---Purpose: Returns a BoundedCurve

View File

@@ -23,7 +23,7 @@ uses
HAsciiString from TCollection
is
Create returns mutable BoundedSurface;
Create returns BoundedSurface;
---Purpose: Returns a BoundedSurface

View File

@@ -25,29 +25,29 @@ uses
HAsciiString from TCollection
is
Create returns mutable CartesianPoint;
Create returns CartesianPoint;
---Purpose: Returns a CartesianPoint
Init (me : mutable;
aName : mutable HAsciiString from TCollection) is redefined;
aName : HAsciiString from TCollection) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aCoordinates : mutable HArray1OfReal from TColStd) is virtual;
aName : HAsciiString from TCollection;
aCoordinates : HArray1OfReal from TColStd) is virtual;
Init2D (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
X,Y : Real);
Init3D (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
X,Y,Z : Real);
-- Specific Methods for Field Data Access --
SetCoordinates(me : mutable; aCoordinates : mutable HArray1OfReal);
Coordinates (me) returns mutable HArray1OfReal;
SetCoordinates(me : mutable; aCoordinates : HArray1OfReal);
Coordinates (me) returns HArray1OfReal;
CoordinatesValue (me; num : Integer) returns Real;
NbCoordinates (me) returns Integer;

View File

@@ -30,35 +30,35 @@ uses
HAsciiString from TCollection
is
Create returns mutable CartesianTransformationOperator;
Create returns CartesianTransformationOperator;
---Purpose: Returns a CartesianTransformationOperator
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;
hasAaxis1 : Boolean from Standard;
aAxis1 : mutable Direction from StepGeom;
aAxis1 : Direction from StepGeom;
hasAaxis2 : Boolean from Standard;
aAxis2 : mutable Direction from StepGeom;
aLocalOrigin : mutable CartesianPoint from StepGeom;
aAxis2 : Direction from StepGeom;
aLocalOrigin : CartesianPoint from StepGeom;
hasAscale : Boolean from Standard;
aScale : Real from Standard) is virtual;
-- Specific Methods for Field Data Access --
SetAxis1(me : mutable; aAxis1 : mutable Direction);
SetAxis1(me : mutable; aAxis1 : Direction);
UnSetAxis1 (me:mutable);
Axis1 (me) returns mutable Direction;
Axis1 (me) returns Direction;
HasAxis1 (me) returns Boolean;
SetAxis2(me : mutable; aAxis2 : mutable Direction);
SetAxis2(me : mutable; aAxis2 : Direction);
UnSetAxis2 (me:mutable);
Axis2 (me) returns mutable Direction;
Axis2 (me) returns Direction;
HasAxis2 (me) returns Boolean;
SetLocalOrigin(me : mutable; aLocalOrigin : mutable CartesianPoint);
LocalOrigin (me) returns mutable CartesianPoint;
SetLocalOrigin(me : mutable; aLocalOrigin : CartesianPoint);
LocalOrigin (me) returns CartesianPoint;
SetScale(me : mutable; aScale : Real);
UnSetScale (me:mutable);
Scale (me) returns Real;

View File

@@ -24,6 +24,6 @@ uses Boolean
is
Create returns mutable CartesianTransformationOperator2d from StepGeom;
Create returns CartesianTransformationOperator2d from StepGeom;
end CartesianTransformationOperator2d;

View File

@@ -27,37 +27,37 @@ uses
Real from Standard
is
Create returns mutable CartesianTransformationOperator3d;
Create returns CartesianTransformationOperator3d;
---Purpose: Returns a CartesianTransformationOperator3d
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
hasAaxis1 : Boolean from Standard;
aAxis1 : mutable Direction from StepGeom;
aAxis1 : Direction from StepGeom;
hasAaxis2 : Boolean from Standard;
aAxis2 : mutable Direction from StepGeom;
aLocalOrigin : mutable CartesianPoint from StepGeom;
aAxis2 : Direction from StepGeom;
aLocalOrigin : CartesianPoint from StepGeom;
hasAscale : Boolean from Standard;
aScale : Real from Standard) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
hasAaxis1 : Boolean from Standard;
aAxis1 : mutable Direction from StepGeom;
aAxis1 : Direction from StepGeom;
hasAaxis2 : Boolean from Standard;
aAxis2 : mutable Direction from StepGeom;
aLocalOrigin : mutable CartesianPoint from StepGeom;
aAxis2 : Direction from StepGeom;
aLocalOrigin : CartesianPoint from StepGeom;
hasAscale : Boolean from Standard;
aScale : Real from Standard;
hasAaxis3 : Boolean from Standard;
aAxis3 : mutable Direction from StepGeom) is virtual;
aAxis3 : Direction from StepGeom) is virtual;
-- Specific Methods for Field Data Access --
SetAxis3(me : mutable; aAxis3 : mutable Direction);
SetAxis3(me : mutable; aAxis3 : Direction);
UnSetAxis3 (me:mutable);
Axis3 (me) returns mutable Direction;
Axis3 (me) returns Direction;
HasAxis3 (me) returns Boolean;
fields

View File

@@ -25,16 +25,16 @@ uses
Axis2Placement from StepGeom
is
Create returns mutable Circle;
Create returns Circle;
---Purpose: Returns a Circle
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
aPosition : Axis2Placement from StepGeom) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
aPosition : Axis2Placement from StepGeom;
aRadius : Real from Standard) is virtual;

View File

@@ -26,23 +26,23 @@ uses
HAsciiString from TCollection
is
Create returns mutable CompositeCurve;
Create returns CompositeCurve;
---Purpose: Returns a CompositeCurve
Init (me : mutable;
aName : mutable HAsciiString from TCollection) is redefined;
aName : HAsciiString from TCollection) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aSegments : mutable HArray1OfCompositeCurveSegment from StepGeom;
aName : HAsciiString from TCollection;
aSegments : HArray1OfCompositeCurveSegment from StepGeom;
aSelfIntersect : Logical from StepData) is virtual;
-- Specific Methods for Field Data Access --
SetSegments(me : mutable; aSegments : mutable HArray1OfCompositeCurveSegment);
Segments (me) returns mutable HArray1OfCompositeCurveSegment;
SegmentsValue (me; num : Integer) returns mutable CompositeCurveSegment;
SetSegments(me : mutable; aSegments : HArray1OfCompositeCurveSegment);
Segments (me) returns HArray1OfCompositeCurveSegment;
SegmentsValue (me; num : Integer) returns CompositeCurveSegment;
NbSegments (me) returns Integer;
SetSelfIntersect(me : mutable; aSelfIntersect : Logical);
SelfIntersect (me) returns Logical;

View File

@@ -25,7 +25,7 @@ uses
Logical from StepData
is
Create returns mutable CompositeCurveOnSurface;
Create returns CompositeCurveOnSurface;
---Purpose: Returns a CompositeCurveOnSurface

View File

@@ -25,13 +25,13 @@ uses
Curve from StepGeom
is
Create returns mutable CompositeCurveSegment;
Create returns CompositeCurveSegment;
---Purpose: Returns a CompositeCurveSegment
Init (me : mutable;
aTransition : TransitionCode from StepGeom;
aSameSense : Boolean from Standard;
aParentCurve : mutable Curve from StepGeom) is virtual;
aParentCurve : Curve from StepGeom) is virtual;
-- Specific Methods for Field Data Access --
@@ -39,8 +39,8 @@ is
Transition (me) returns TransitionCode;
SetSameSense(me : mutable; aSameSense : Boolean);
SameSense (me) returns Boolean;
SetParentCurve(me : mutable; aParentCurve : mutable Curve);
ParentCurve (me) returns mutable Curve;
SetParentCurve(me : mutable; aParentCurve : Curve);
ParentCurve (me) returns Curve;
fields

View File

@@ -24,15 +24,15 @@ uses
HAsciiString from TCollection
is
Create returns mutable Conic;
Create returns Conic;
---Purpose: Returns a Conic
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;
aPosition : Axis2Placement from StepGeom) is virtual;
-- Specific Methods for Field Data Access --

View File

@@ -25,17 +25,17 @@ uses
Axis2Placement3d from StepGeom
is
Create returns mutable ConicalSurface;
Create returns ConicalSurface;
---Purpose: Returns a ConicalSurface
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aPosition : mutable Axis2Placement3d from StepGeom) is redefined;
aName : HAsciiString from TCollection;
aPosition : Axis2Placement3d from StepGeom) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aPosition : mutable Axis2Placement3d from StepGeom;
aName : HAsciiString from TCollection;
aPosition : Axis2Placement3d from StepGeom;
aRadius : Real from Standard;
aSemiAngle : Real from Standard) is virtual;

View File

@@ -23,7 +23,7 @@ uses
HAsciiString from TCollection
is
Create returns mutable Curve;
Create returns Curve;
---Purpose: Returns a Curve

View File

@@ -24,24 +24,24 @@ uses
HAsciiString from TCollection
is
Create returns mutable CurveReplica;
Create returns CurveReplica;
---Purpose: Returns a CurveReplica
Init (me : mutable;
aName : mutable HAsciiString from TCollection) is redefined;
aName : HAsciiString from TCollection) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aParentCurve : mutable Curve from StepGeom;
aTransformation : mutable CartesianTransformationOperator from StepGeom) is virtual;
aName : HAsciiString from TCollection;
aParentCurve : Curve from StepGeom;
aTransformation : CartesianTransformationOperator from StepGeom) is virtual;
-- Specific Methods for Field Data Access --
SetParentCurve(me : mutable; aParentCurve : mutable Curve);
ParentCurve (me) returns mutable Curve;
SetTransformation(me : mutable; aTransformation : mutable CartesianTransformationOperator);
Transformation (me) returns mutable CartesianTransformationOperator;
SetParentCurve(me : mutable; aParentCurve : Curve);
ParentCurve (me) returns Curve;
SetTransformation(me : mutable; aTransformation : CartesianTransformationOperator);
Transformation (me) returns CartesianTransformationOperator;
fields

View File

@@ -25,17 +25,17 @@ uses
Axis2Placement3d from StepGeom
is
Create returns mutable CylindricalSurface;
Create returns CylindricalSurface;
---Purpose: Returns a CylindricalSurface
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aPosition : mutable Axis2Placement3d from StepGeom) is redefined;
aName : HAsciiString from TCollection;
aPosition : Axis2Placement3d from StepGeom) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aPosition : mutable Axis2Placement3d from StepGeom;
aName : HAsciiString from TCollection;
aPosition : Axis2Placement3d from StepGeom;
aRadius : Real from Standard) is virtual;
-- Specific Methods for Field Data Access --

View File

@@ -25,24 +25,24 @@ uses
HAsciiString from TCollection
is
Create returns mutable DegeneratePcurve;
Create returns DegeneratePcurve;
---Purpose: Returns a DegeneratePcurve
Init (me : mutable;
aName : mutable HAsciiString from TCollection) is redefined;
aName : HAsciiString from TCollection) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aBasisSurface : mutable Surface from StepGeom;
aReferenceToCurve : mutable DefinitionalRepresentation from StepRepr) is virtual;
aName : HAsciiString from TCollection;
aBasisSurface : Surface from StepGeom;
aReferenceToCurve : DefinitionalRepresentation from StepRepr) is virtual;
-- Specific Methods for Field Data Access --
SetBasisSurface(me : mutable; aBasisSurface : mutable Surface);
BasisSurface (me) returns mutable Surface;
SetReferenceToCurve(me : mutable; aReferenceToCurve : mutable DefinitionalRepresentation);
ReferenceToCurve (me) returns mutable DefinitionalRepresentation;
SetBasisSurface(me : mutable; aBasisSurface : Surface);
BasisSurface (me) returns Surface;
SetReferenceToCurve(me : mutable; aReferenceToCurve : DefinitionalRepresentation);
ReferenceToCurve (me) returns DefinitionalRepresentation;
fields

View File

@@ -26,19 +26,19 @@ uses
Real from Standard
is
Create returns mutable DegenerateToroidalSurface;
Create returns DegenerateToroidalSurface;
---Purpose: Returns a DegenerateToroidalSurface
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aPosition : mutable Axis2Placement3d from StepGeom;
aName : HAsciiString from TCollection;
aPosition : Axis2Placement3d from StepGeom;
aMajorRadius : Real from Standard;
aMinorRadius : Real from Standard) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aPosition : mutable Axis2Placement3d from StepGeom;
aName : HAsciiString from TCollection;
aPosition : Axis2Placement3d from StepGeom;
aMajorRadius : Real from Standard;
aMinorRadius : Real from Standard;
aSelectOuter : Boolean from Standard) is virtual;

View File

@@ -25,21 +25,21 @@ uses
HAsciiString from TCollection
is
Create returns mutable Direction;
Create returns Direction;
---Purpose: Returns a Direction
Init (me : mutable;
aName : mutable HAsciiString from TCollection) is redefined;
aName : HAsciiString from TCollection) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aDirectionRatios : mutable HArray1OfReal from TColStd) is virtual;
aName : HAsciiString from TCollection;
aDirectionRatios : HArray1OfReal from TColStd) is virtual;
-- Specific Methods for Field Data Access --
SetDirectionRatios(me : mutable; aDirectionRatios : mutable HArray1OfReal);
DirectionRatios (me) returns mutable HArray1OfReal;
SetDirectionRatios(me : mutable; aDirectionRatios : HArray1OfReal);
DirectionRatios (me) returns HArray1OfReal;
DirectionRatiosValue (me; num : Integer) returns Real;
NbDirectionRatios (me) returns Integer;

View File

@@ -24,21 +24,21 @@ uses
HAsciiString from TCollection
is
Create returns mutable ElementarySurface;
Create returns ElementarySurface;
---Purpose: Returns a ElementarySurface
Init (me : mutable;
aName : mutable HAsciiString from TCollection) is redefined;
aName : HAsciiString from TCollection) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aPosition : mutable Axis2Placement3d from StepGeom) is virtual;
aName : HAsciiString from TCollection;
aPosition : Axis2Placement3d from StepGeom) is virtual;
-- Specific Methods for Field Data Access --
SetPosition(me : mutable; aPosition : mutable Axis2Placement3d);
Position (me) returns mutable Axis2Placement3d;
SetPosition(me : mutable; aPosition : Axis2Placement3d);
Position (me) returns Axis2Placement3d;
fields

View File

@@ -25,16 +25,16 @@ uses
Axis2Placement from StepGeom
is
Create returns mutable Ellipse;
Create returns Ellipse;
---Purpose: Returns a Ellipse
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
aPosition : Axis2Placement from StepGeom) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
aPosition : Axis2Placement from StepGeom;
aSemiAxis1 : Real from Standard;
aSemiAxis2 : Real from Standard) is virtual;

View File

@@ -26,25 +26,25 @@ uses
DefinitionalRepresentation from StepRepr
is
Create returns mutable EvaluatedDegeneratePcurve;
Create returns EvaluatedDegeneratePcurve;
---Purpose: Returns a EvaluatedDegeneratePcurve
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aBasisSurface : mutable Surface from StepGeom;
aReferenceToCurve : mutable DefinitionalRepresentation from StepRepr) is redefined;
aName : HAsciiString from TCollection;
aBasisSurface : Surface from StepGeom;
aReferenceToCurve : DefinitionalRepresentation from StepRepr) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aBasisSurface : mutable Surface from StepGeom;
aReferenceToCurve : mutable DefinitionalRepresentation from StepRepr;
aEquivalentPoint : mutable CartesianPoint from StepGeom) is virtual;
aName : HAsciiString from TCollection;
aBasisSurface : Surface from StepGeom;
aReferenceToCurve : DefinitionalRepresentation from StepRepr;
aEquivalentPoint : CartesianPoint from StepGeom) is virtual;
-- Specific Methods for Field Data Access --
SetEquivalentPoint(me : mutable; aEquivalentPoint : mutable CartesianPoint);
EquivalentPoint (me) returns mutable CartesianPoint;
SetEquivalentPoint(me : mutable; aEquivalentPoint : CartesianPoint);
EquivalentPoint (me) returns CartesianPoint;
fields

View File

@@ -40,26 +40,26 @@ uses
is
Create returns mutable GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx;
Create returns GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx;
Init (me : mutable;
aContextIdentifier : mutable HAsciiString from TCollection;
aContextType : mutable HAsciiString from TCollection) is redefined;
aContextIdentifier : HAsciiString from TCollection;
aContextType : HAsciiString from TCollection) is redefined;
Init(me : mutable;
aContextIdentifier : mutable HAsciiString from TCollection;
aContextType : mutable HAsciiString from TCollection;
aGeometricRepresentationCtx : mutable GeometricRepresentationContext from StepGeom;
aGlobalUnitAssignedCtx : mutable GlobalUnitAssignedContext from StepRepr;
aGlobalUncertaintyAssignedCtx : mutable GlobalUncertaintyAssignedContext from StepRepr)
aContextIdentifier : HAsciiString from TCollection;
aContextType : HAsciiString from TCollection;
aGeometricRepresentationCtx : GeometricRepresentationContext from StepGeom;
aGlobalUnitAssignedCtx : GlobalUnitAssignedContext from StepRepr;
aGlobalUncertaintyAssignedCtx : GlobalUncertaintyAssignedContext from StepRepr)
is virtual;
Init(me : mutable;
aContextIdentifier : mutable HAsciiString from TCollection;
aContextType : mutable HAsciiString from TCollection;
aContextIdentifier : HAsciiString from TCollection;
aContextType : HAsciiString from TCollection;
aCoordinateSpaceDimension : Integer from Standard;
aUnits : mutable HArray1OfNamedUnit from StepBasic;
anUncertainty : mutable HArray1OfUncertaintyMeasureWithUnit from StepBasic)
aUnits : HArray1OfNamedUnit from StepBasic;
anUncertainty : HArray1OfUncertaintyMeasureWithUnit from StepBasic)
is virtual;
-- ====================================== --
@@ -68,17 +68,17 @@ is
SetGeometricRepresentationContext
(me : mutable;
aGeometricRepresentationContext : mutable GeometricRepresentationContext);
aGeometricRepresentationContext : GeometricRepresentationContext);
GeometricRepresentationContext (me)
returns mutable GeometricRepresentationContext;
returns GeometricRepresentationContext;
SetGlobalUnitAssignedContext
(me : mutable;
aGlobalUnitAssignedContext : mutable GlobalUnitAssignedContext);
aGlobalUnitAssignedContext : GlobalUnitAssignedContext);
GlobalUnitAssignedContext (me)
returns mutable GlobalUnitAssignedContext;
returns GlobalUnitAssignedContext;
SetGlobalUncertaintyAssignedContext
(me : mutable;
@@ -98,18 +98,18 @@ is
-- Specific Methods for ANDOR Field Data Access GlobalUnitAssignedContext --
-- ====================================================================== --
SetUnits(me : mutable; aUnits : mutable HArray1OfNamedUnit);
Units (me) returns mutable HArray1OfNamedUnit;
UnitsValue (me; num : Integer) returns mutable NamedUnit;
SetUnits(me : mutable; aUnits : HArray1OfNamedUnit);
Units (me) returns HArray1OfNamedUnit;
UnitsValue (me; num : Integer) returns NamedUnit;
NbUnits (me) returns Integer;
-- ============================================================================= --
-- Specific Methods for ANDOR Field Data Access GlobalUncertaintyAssignedContext --
-- ============================================================================= --
SetUncertainty(me : mutable; aUncertainty : mutable HArray1OfUncertaintyMeasureWithUnit);
Uncertainty (me) returns mutable HArray1OfUncertaintyMeasureWithUnit;
UncertaintyValue (me; num : Integer) returns mutable UncertaintyMeasureWithUnit;
SetUncertainty(me : mutable; aUncertainty : HArray1OfUncertaintyMeasureWithUnit);
Uncertainty (me) returns HArray1OfUncertaintyMeasureWithUnit;
UncertaintyValue (me; num : Integer) returns UncertaintyMeasureWithUnit;
NbUncertainty (me) returns Integer;
fields

View File

@@ -24,17 +24,17 @@ uses
HAsciiString from TCollection
is
Create returns mutable GeometricRepresentationContext;
Create returns GeometricRepresentationContext;
---Purpose: Returns a GeometricRepresentationContext
Init (me : mutable;
aContextIdentifier : mutable HAsciiString from TCollection;
aContextType : mutable HAsciiString from TCollection) is redefined;
aContextIdentifier : HAsciiString from TCollection;
aContextType : HAsciiString from TCollection) is redefined;
Init (me : mutable;
aContextIdentifier : mutable HAsciiString from TCollection;
aContextType : mutable HAsciiString from TCollection;
aContextIdentifier : HAsciiString from TCollection;
aContextType : HAsciiString from TCollection;
aCoordinateSpaceDimension : Integer from Standard) is virtual;
-- Specific Methods for Field Data Access --

View File

@@ -31,32 +31,32 @@ uses
NamedUnit from StepBasic
is
Create returns mutable GeometricRepresentationContextAndGlobalUnitAssignedContext;
Create returns GeometricRepresentationContextAndGlobalUnitAssignedContext;
---Purpose: Returns a GeometricRepresentationContextAndGlobalUnitAssignedContext
Init (me : mutable;
aContextIdentifier : mutable HAsciiString from TCollection;
aContextType : mutable HAsciiString from TCollection) is redefined;
aContextIdentifier : HAsciiString from TCollection;
aContextType : HAsciiString from TCollection) is redefined;
Init (me : mutable;
aContextIdentifier : mutable HAsciiString from TCollection;
aContextType : mutable HAsciiString from TCollection;
aGeometricRepresentationContext : mutable GeometricRepresentationContext from StepGeom;
aGlobalUnitAssignedContext : mutable GlobalUnitAssignedContext from StepRepr) is virtual;
aContextIdentifier : HAsciiString from TCollection;
aContextType : HAsciiString from TCollection;
aGeometricRepresentationContext : GeometricRepresentationContext from StepGeom;
aGlobalUnitAssignedContext : GlobalUnitAssignedContext from StepRepr) is virtual;
Init (me : mutable;
aContextIdentifier : mutable HAsciiString from TCollection;
aContextType : mutable HAsciiString from TCollection;
aContextIdentifier : HAsciiString from TCollection;
aContextType : HAsciiString from TCollection;
aCoordinateSpaceDimension : Integer from Standard;
aUnits : mutable HArray1OfNamedUnit from StepBasic) is virtual;
aUnits : HArray1OfNamedUnit from StepBasic) is virtual;
-- Specific Methods for Field Data Access --
SetGeometricRepresentationContext(me : mutable; aGeometricRepresentationContext : mutable GeometricRepresentationContext);
GeometricRepresentationContext (me) returns mutable GeometricRepresentationContext;
SetGlobalUnitAssignedContext(me : mutable; aGlobalUnitAssignedContext : mutable GlobalUnitAssignedContext);
GlobalUnitAssignedContext (me) returns mutable GlobalUnitAssignedContext;
SetGeometricRepresentationContext(me : mutable; aGeometricRepresentationContext : GeometricRepresentationContext);
GeometricRepresentationContext (me) returns GeometricRepresentationContext;
SetGlobalUnitAssignedContext(me : mutable; aGlobalUnitAssignedContext : GlobalUnitAssignedContext);
GlobalUnitAssignedContext (me) returns GlobalUnitAssignedContext;
-- Specific Methods for ANDOR Field Data Access --
@@ -65,9 +65,9 @@ is
-- Specific Methods for ANDOR Field Data Access --
SetUnits(me : mutable; aUnits : mutable HArray1OfNamedUnit);
Units (me) returns mutable HArray1OfNamedUnit;
UnitsValue (me; num : Integer) returns mutable NamedUnit;
SetUnits(me : mutable; aUnits : HArray1OfNamedUnit);
Units (me) returns HArray1OfNamedUnit;
UnitsValue (me; num : Integer) returns NamedUnit;
NbUnits (me) returns Integer;
fields

View File

@@ -32,31 +32,31 @@ uses
is
Create returns mutable GeometricRepresentationContextAndParametricRepresentationContext;
Create returns GeometricRepresentationContextAndParametricRepresentationContext;
---Purpose: empty constructor
Init (me : mutable;
aContextIdentifier : mutable HAsciiString from TCollection;
aContextType : mutable HAsciiString from TCollection) is redefined;
aContextIdentifier : HAsciiString from TCollection;
aContextType : HAsciiString from TCollection) is redefined;
Init (me : mutable;
aContextIdentifier : mutable HAsciiString from TCollection;
aContextType : mutable HAsciiString from TCollection;
aGeometricRepresentationContext : mutable GeometricRepresentationContext from StepGeom;
aParametricRepresentationContext : mutable ParametricRepresentationContext from StepRepr) is virtual;
aContextIdentifier : HAsciiString from TCollection;
aContextType : HAsciiString from TCollection;
aGeometricRepresentationContext : GeometricRepresentationContext from StepGeom;
aParametricRepresentationContext : ParametricRepresentationContext from StepRepr) is virtual;
Init (me : mutable;
aContextIdentifier : mutable HAsciiString from TCollection;
aContextType : mutable HAsciiString from TCollection;
aContextIdentifier : HAsciiString from TCollection;
aContextType : HAsciiString from TCollection;
aCoordinateSpaceDimension : Integer from Standard) is virtual;
-- Specific Methods for Field Data Access --
SetGeometricRepresentationContext(me : mutable; aGeometricRepresentationContext : mutable GeometricRepresentationContext);
GeometricRepresentationContext (me) returns mutable GeometricRepresentationContext;
SetParametricRepresentationContext(me : mutable; aParametricRepresentationContext : mutable ParametricRepresentationContext);
ParametricRepresentationContext (me) returns mutable ParametricRepresentationContext;
SetGeometricRepresentationContext(me : mutable; aGeometricRepresentationContext : GeometricRepresentationContext);
GeometricRepresentationContext (me) returns GeometricRepresentationContext;
SetParametricRepresentationContext(me : mutable; aParametricRepresentationContext : ParametricRepresentationContext);
ParametricRepresentationContext (me) returns ParametricRepresentationContext;
-- Specific Methods for ANDOR Field Data Access --

View File

@@ -23,7 +23,7 @@ uses
HAsciiString from TCollection
is
Create returns mutable GeometricRepresentationItem;
Create returns GeometricRepresentationItem;
---Purpose: Returns a GeometricRepresentationItem

View File

@@ -25,16 +25,16 @@ uses
Axis2Placement from StepGeom
is
Create returns mutable Hyperbola;
Create returns Hyperbola;
---Purpose: Returns a Hyperbola
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
aPosition : Axis2Placement from StepGeom) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
aPosition : Axis2Placement from StepGeom;
aSemiAxis : Real from Standard;
aSemiImagAxis : Real from Standard) is virtual;

View File

@@ -26,7 +26,7 @@ uses
PreferredSurfaceCurveRepresentation from StepGeom
is
Create returns mutable IntersectionCurve;
Create returns IntersectionCurve;
---Purpose: Returns a IntersectionCurve

View File

@@ -25,24 +25,24 @@ uses
HAsciiString from TCollection
is
Create returns mutable Line;
Create returns Line;
---Purpose: Returns a Line
Init (me : mutable;
aName : mutable HAsciiString from TCollection) is redefined;
aName : HAsciiString from TCollection) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aPnt : mutable CartesianPoint from StepGeom;
aDir : mutable Vector from StepGeom) is virtual;
aName : HAsciiString from TCollection;
aPnt : CartesianPoint from StepGeom;
aDir : Vector from StepGeom) is virtual;
-- Specific Methods for Field Data Access --
SetPnt(me : mutable; aPnt : mutable CartesianPoint);
Pnt (me) returns mutable CartesianPoint;
SetDir(me : mutable; aDir : mutable Vector);
Dir (me) returns mutable Vector;
SetPnt(me : mutable; aPnt : CartesianPoint);
Pnt (me) returns CartesianPoint;
SetDir(me : mutable; aDir : Vector);
Dir (me) returns Vector;
fields

View File

@@ -26,30 +26,30 @@ uses
HAsciiString from TCollection
is
Create returns mutable OffsetCurve3d;
Create returns OffsetCurve3d;
---Purpose: Returns a OffsetCurve3d
Init (me : mutable;
aName : mutable HAsciiString from TCollection) is redefined;
aName : HAsciiString from TCollection) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aBasisCurve : mutable Curve from StepGeom;
aName : HAsciiString from TCollection;
aBasisCurve : Curve from StepGeom;
aDistance : Real from Standard;
aSelfIntersect : Logical from StepData;
aRefDirection : mutable Direction from StepGeom) is virtual;
aRefDirection : Direction from StepGeom) is virtual;
-- Specific Methods for Field Data Access --
SetBasisCurve(me : mutable; aBasisCurve : mutable Curve);
BasisCurve (me) returns mutable Curve;
SetBasisCurve(me : mutable; aBasisCurve : Curve);
BasisCurve (me) returns Curve;
SetDistance(me : mutable; aDistance : Real);
Distance (me) returns Real;
SetSelfIntersect(me : mutable; aSelfIntersect : Logical);
SelfIntersect (me) returns Logical;
SetRefDirection(me : mutable; aRefDirection : mutable Direction);
RefDirection (me) returns mutable Direction;
SetRefDirection(me : mutable; aRefDirection : Direction);
RefDirection (me) returns Direction;
fields

View File

@@ -25,23 +25,23 @@ uses
HAsciiString from TCollection
is
Create returns mutable OffsetSurface;
Create returns OffsetSurface;
---Purpose: Returns a OffsetSurface
Init (me : mutable;
aName : mutable HAsciiString from TCollection) is redefined;
aName : HAsciiString from TCollection) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aBasisSurface : mutable Surface from StepGeom;
aName : HAsciiString from TCollection;
aBasisSurface : Surface from StepGeom;
aDistance : Real from Standard;
aSelfIntersect : Logical from StepData) is virtual;
-- Specific Methods for Field Data Access --
SetBasisSurface(me : mutable; aBasisSurface : mutable Surface);
BasisSurface (me) returns mutable Surface;
SetBasisSurface(me : mutable; aBasisSurface : Surface);
BasisSurface (me) returns Surface;
SetDistance(me : mutable; aDistance : Real);
Distance (me) returns Real;
SetSelfIntersect(me : mutable; aSelfIntersect : Logical);

View File

@@ -25,7 +25,7 @@ uses
Logical from StepData
is
Create returns mutable OuterBoundaryCurve;
Create returns OuterBoundaryCurve;
---Purpose: Returns a OuterBoundaryCurve

View File

@@ -25,16 +25,16 @@ uses
Axis2Placement from StepGeom
is
Create returns mutable Parabola;
Create returns Parabola;
---Purpose: Returns a Parabola
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
aPosition : Axis2Placement from StepGeom) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
aPosition : Axis2Placement from StepGeom;
aFocalDist : Real from Standard) is virtual;

View File

@@ -25,24 +25,24 @@ uses
HAsciiString from TCollection
is
Create returns mutable Pcurve;
Create returns Pcurve;
---Purpose: Returns a Pcurve
Init (me : mutable;
aName : mutable HAsciiString from TCollection) is redefined;
aName : HAsciiString from TCollection) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aBasisSurface : mutable Surface from StepGeom;
aReferenceToCurve : mutable DefinitionalRepresentation from StepRepr) is virtual;
aName : HAsciiString from TCollection;
aBasisSurface : Surface from StepGeom;
aReferenceToCurve : DefinitionalRepresentation from StepRepr) is virtual;
-- Specific Methods for Field Data Access --
SetBasisSurface(me : mutable; aBasisSurface : mutable Surface);
BasisSurface (me) returns mutable Surface;
SetReferenceToCurve(me : mutable; aReferenceToCurve : mutable DefinitionalRepresentation);
ReferenceToCurve (me) returns mutable DefinitionalRepresentation;
SetBasisSurface(me : mutable; aBasisSurface : Surface);
BasisSurface (me) returns Surface;
SetReferenceToCurve(me : mutable; aReferenceToCurve : DefinitionalRepresentation);
ReferenceToCurve (me) returns DefinitionalRepresentation;
fields

View File

@@ -24,21 +24,21 @@ uses
HAsciiString from TCollection
is
Create returns mutable Placement;
Create returns Placement;
---Purpose: Returns a Placement
Init (me : mutable;
aName : mutable HAsciiString from TCollection) is redefined;
aName : HAsciiString from TCollection) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aLocation : mutable CartesianPoint from StepGeom) is virtual;
aName : HAsciiString from TCollection;
aLocation : CartesianPoint from StepGeom) is virtual;
-- Specific Methods for Field Data Access --
SetLocation(me : mutable; aLocation : mutable CartesianPoint);
Location (me) returns mutable CartesianPoint;
SetLocation(me : mutable; aLocation : CartesianPoint);
Location (me) returns CartesianPoint;
fields

View File

@@ -24,7 +24,7 @@ uses
Axis2Placement3d from StepGeom
is
Create returns mutable Plane;
Create returns Plane;
---Purpose: Returns a Plane

View File

@@ -23,7 +23,7 @@ uses
HAsciiString from TCollection
is
Create returns mutable Point;
Create returns Point;
---Purpose: Returns a Point

View File

@@ -25,22 +25,22 @@ uses
HAsciiString from TCollection
is
Create returns mutable PointOnCurve;
Create returns PointOnCurve;
---Purpose: Returns a PointOnCurve
Init (me : mutable;
aName : mutable HAsciiString from TCollection) is redefined;
aName : HAsciiString from TCollection) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aBasisCurve : mutable Curve from StepGeom;
aName : HAsciiString from TCollection;
aBasisCurve : Curve from StepGeom;
aPointParameter : Real from Standard) is virtual;
-- Specific Methods for Field Data Access --
SetBasisCurve(me : mutable; aBasisCurve : mutable Curve);
BasisCurve (me) returns mutable Curve;
SetBasisCurve(me : mutable; aBasisCurve : Curve);
BasisCurve (me) returns Curve;
SetPointParameter(me : mutable; aPointParameter : Real);
PointParameter (me) returns Real;

View File

@@ -25,23 +25,23 @@ uses
HAsciiString from TCollection
is
Create returns mutable PointOnSurface;
Create returns PointOnSurface;
---Purpose: Returns a PointOnSurface
Init (me : mutable;
aName : mutable HAsciiString from TCollection) is redefined;
aName : HAsciiString from TCollection) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aBasisSurface : mutable Surface from StepGeom;
aName : HAsciiString from TCollection;
aBasisSurface : Surface from StepGeom;
aPointParameterU : Real from Standard;
aPointParameterV : Real from Standard) is virtual;
-- Specific Methods for Field Data Access --
SetBasisSurface(me : mutable; aBasisSurface : mutable Surface);
BasisSurface (me) returns mutable Surface;
SetBasisSurface(me : mutable; aBasisSurface : Surface);
BasisSurface (me) returns Surface;
SetPointParameterU(me : mutable; aPointParameterU : Real);
PointParameterU (me) returns Real;
SetPointParameterV(me : mutable; aPointParameterV : Real);

View File

@@ -24,24 +24,24 @@ uses
HAsciiString from TCollection
is
Create returns mutable PointReplica;
Create returns PointReplica;
---Purpose: Returns a PointReplica
Init (me : mutable;
aName : mutable HAsciiString from TCollection) is redefined;
aName : HAsciiString from TCollection) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aParentPt : mutable Point from StepGeom;
aTransformation : mutable CartesianTransformationOperator from StepGeom) is virtual;
aName : HAsciiString from TCollection;
aParentPt : Point from StepGeom;
aTransformation : CartesianTransformationOperator from StepGeom) is virtual;
-- Specific Methods for Field Data Access --
SetParentPt(me : mutable; aParentPt : mutable Point);
ParentPt (me) returns mutable Point;
SetTransformation(me : mutable; aTransformation : mutable CartesianTransformationOperator);
Transformation (me) returns mutable CartesianTransformationOperator;
SetParentPt(me : mutable; aParentPt : Point);
ParentPt (me) returns Point;
SetTransformation(me : mutable; aTransformation : CartesianTransformationOperator);
Transformation (me) returns CartesianTransformationOperator;
fields

View File

@@ -25,22 +25,22 @@ uses
HAsciiString from TCollection
is
Create returns mutable Polyline;
Create returns Polyline;
---Purpose: Returns a Polyline
Init (me : mutable;
aName : mutable HAsciiString from TCollection) is redefined;
aName : HAsciiString from TCollection) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aPoints : mutable HArray1OfCartesianPoint from StepGeom) is virtual;
aName : HAsciiString from TCollection;
aPoints : HArray1OfCartesianPoint from StepGeom) is virtual;
-- Specific Methods for Field Data Access --
SetPoints(me : mutable; aPoints : mutable HArray1OfCartesianPoint);
Points (me) returns mutable HArray1OfCartesianPoint;
PointsValue (me; num : Integer) returns mutable CartesianPoint;
SetPoints(me : mutable; aPoints : HArray1OfCartesianPoint);
Points (me) returns HArray1OfCartesianPoint;
PointsValue (me; num : Integer) returns CartesianPoint;
NbPoints (me) returns Integer;
fields

View File

@@ -27,7 +27,7 @@ uses
Logical from StepData
is
Create returns mutable QuasiUniformCurve;
Create returns QuasiUniformCurve;
---Purpose: Returns a QuasiUniformCurve

View File

@@ -34,51 +34,51 @@ uses
Real from Standard
is
Create returns mutable QuasiUniformCurveAndRationalBSplineCurve;
Create returns QuasiUniformCurveAndRationalBSplineCurve;
---Purpose: Returns a QuasiUniformCurveAndRationalBSplineCurve
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
aDegree : Integer from Standard;
aControlPointsList : mutable HArray1OfCartesianPoint from StepGeom;
aControlPointsList : HArray1OfCartesianPoint from StepGeom;
aCurveForm : BSplineCurveForm from StepGeom;
aClosedCurve : Logical from StepData;
aSelfIntersect : Logical from StepData) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
aDegree : Integer from Standard;
aControlPointsList : mutable HArray1OfCartesianPoint from StepGeom;
aControlPointsList : HArray1OfCartesianPoint from StepGeom;
aCurveForm : BSplineCurveForm from StepGeom;
aClosedCurve : Logical from StepData;
aSelfIntersect : Logical from StepData;
aQuasiUniformCurve : mutable QuasiUniformCurve from StepGeom;
aRationalBSplineCurve : mutable RationalBSplineCurve from StepGeom) is virtual;
aQuasiUniformCurve : QuasiUniformCurve from StepGeom;
aRationalBSplineCurve : RationalBSplineCurve from StepGeom) is virtual;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
aDegree : Integer from Standard;
aControlPointsList : mutable HArray1OfCartesianPoint from StepGeom;
aControlPointsList : HArray1OfCartesianPoint from StepGeom;
aCurveForm : BSplineCurveForm from StepGeom;
aClosedCurve : Logical from StepData;
aSelfIntersect : Logical from StepData;
aWeightsData : mutable HArray1OfReal from TColStd) is virtual;
aWeightsData : HArray1OfReal from TColStd) is virtual;
-- Specific Methods for Field Data Access --
SetQuasiUniformCurve(me : mutable; aQuasiUniformCurve : mutable QuasiUniformCurve);
QuasiUniformCurve (me) returns mutable QuasiUniformCurve;
SetRationalBSplineCurve(me : mutable; aRationalBSplineCurve : mutable RationalBSplineCurve);
RationalBSplineCurve (me) returns mutable RationalBSplineCurve;
SetQuasiUniformCurve(me : mutable; aQuasiUniformCurve : QuasiUniformCurve);
QuasiUniformCurve (me) returns QuasiUniformCurve;
SetRationalBSplineCurve(me : mutable; aRationalBSplineCurve : RationalBSplineCurve);
RationalBSplineCurve (me) returns RationalBSplineCurve;
-- Specific Methods for ANDOR Field Data Access --
-- Specific Methods for ANDOR Field Data Access --
SetWeightsData(me : mutable; aWeightsData : mutable HArray1OfReal);
WeightsData (me) returns mutable HArray1OfReal;
SetWeightsData(me : mutable; aWeightsData : HArray1OfReal);
WeightsData (me) returns HArray1OfReal;
WeightsDataValue (me; num : Integer) returns Real;
NbWeightsData (me) returns Integer;

View File

@@ -27,7 +27,7 @@ uses
Logical from StepData
is
Create returns mutable QuasiUniformSurface;
Create returns QuasiUniformSurface;
---Purpose: Returns a QuasiUniformSurface

View File

@@ -34,57 +34,57 @@ uses
Real from Standard
is
Create returns mutable QuasiUniformSurfaceAndRationalBSplineSurface;
Create returns QuasiUniformSurfaceAndRationalBSplineSurface;
---Purpose: Returns a QuasiUniformSurfaceAndRationalBSplineSurface
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
aUDegree : Integer from Standard;
aVDegree : Integer from Standard;
aControlPointsList : mutable HArray2OfCartesianPoint from StepGeom;
aControlPointsList : HArray2OfCartesianPoint from StepGeom;
aSurfaceForm : BSplineSurfaceForm from StepGeom;
aUClosed : Logical from StepData;
aVClosed : Logical from StepData;
aSelfIntersect : Logical from StepData) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
aUDegree : Integer from Standard;
aVDegree : Integer from Standard;
aControlPointsList : mutable HArray2OfCartesianPoint from StepGeom;
aControlPointsList : HArray2OfCartesianPoint from StepGeom;
aSurfaceForm : BSplineSurfaceForm from StepGeom;
aUClosed : Logical from StepData;
aVClosed : Logical from StepData;
aSelfIntersect : Logical from StepData;
aQuasiUniformSurface : mutable QuasiUniformSurface from StepGeom;
aRationalBSplineSurface : mutable RationalBSplineSurface from StepGeom) is virtual;
aQuasiUniformSurface : QuasiUniformSurface from StepGeom;
aRationalBSplineSurface : RationalBSplineSurface from StepGeom) is virtual;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
aUDegree : Integer from Standard;
aVDegree : Integer from Standard;
aControlPointsList : mutable HArray2OfCartesianPoint from StepGeom;
aControlPointsList : HArray2OfCartesianPoint from StepGeom;
aSurfaceForm : BSplineSurfaceForm from StepGeom;
aUClosed : Logical from StepData;
aVClosed : Logical from StepData;
aSelfIntersect : Logical from StepData;
aWeightsData : mutable HArray2OfReal from TColStd) is virtual;
aWeightsData : HArray2OfReal from TColStd) is virtual;
-- Specific Methods for Field Data Access --
SetQuasiUniformSurface(me : mutable; aQuasiUniformSurface : mutable QuasiUniformSurface);
QuasiUniformSurface (me) returns mutable QuasiUniformSurface;
SetRationalBSplineSurface(me : mutable; aRationalBSplineSurface : mutable RationalBSplineSurface);
RationalBSplineSurface (me) returns mutable RationalBSplineSurface;
SetQuasiUniformSurface(me : mutable; aQuasiUniformSurface : QuasiUniformSurface);
QuasiUniformSurface (me) returns QuasiUniformSurface;
SetRationalBSplineSurface(me : mutable; aRationalBSplineSurface : RationalBSplineSurface);
RationalBSplineSurface (me) returns RationalBSplineSurface;
-- Specific Methods for ANDOR Field Data Access --
-- Specific Methods for ANDOR Field Data Access --
SetWeightsData(me : mutable; aWeightsData : mutable HArray2OfReal);
WeightsData (me) returns mutable HArray2OfReal;
SetWeightsData(me : mutable; aWeightsData : HArray2OfReal);
WeightsData (me) returns HArray2OfReal;
WeightsDataValue (me; num1 : Integer; num2 : Integer) returns Real;
NbWeightsDataI (me) returns Integer;
NbWeightsDataJ (me) returns Integer;

View File

@@ -29,31 +29,31 @@ uses
Logical from StepData
is
Create returns mutable RationalBSplineCurve;
Create returns RationalBSplineCurve;
---Purpose: Returns a RationalBSplineCurve
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
aDegree : Integer from Standard;
aControlPointsList : mutable HArray1OfCartesianPoint from StepGeom;
aControlPointsList : HArray1OfCartesianPoint from StepGeom;
aCurveForm : BSplineCurveForm from StepGeom;
aClosedCurve : Logical from StepData;
aSelfIntersect : Logical from StepData) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
aDegree : Integer from Standard;
aControlPointsList : mutable HArray1OfCartesianPoint from StepGeom;
aControlPointsList : HArray1OfCartesianPoint from StepGeom;
aCurveForm : BSplineCurveForm from StepGeom;
aClosedCurve : Logical from StepData;
aSelfIntersect : Logical from StepData;
aWeightsData : mutable HArray1OfReal from TColStd) is virtual;
aWeightsData : HArray1OfReal from TColStd) is virtual;
-- Specific Methods for Field Data Access --
SetWeightsData(me : mutable; aWeightsData : mutable HArray1OfReal);
WeightsData (me) returns mutable HArray1OfReal;
SetWeightsData(me : mutable; aWeightsData : HArray1OfReal);
WeightsData (me) returns HArray1OfReal;
WeightsDataValue (me; num : Integer) returns Real;
NbWeightsData (me) returns Integer;

View File

@@ -29,35 +29,35 @@ uses
Logical from StepData
is
Create returns mutable RationalBSplineSurface;
Create returns RationalBSplineSurface;
---Purpose: Returns a RationalBSplineSurface
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
aUDegree : Integer from Standard;
aVDegree : Integer from Standard;
aControlPointsList : mutable HArray2OfCartesianPoint from StepGeom;
aControlPointsList : HArray2OfCartesianPoint from StepGeom;
aSurfaceForm : BSplineSurfaceForm from StepGeom;
aUClosed : Logical from StepData;
aVClosed : Logical from StepData;
aSelfIntersect : Logical from StepData) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
aUDegree : Integer from Standard;
aVDegree : Integer from Standard;
aControlPointsList : mutable HArray2OfCartesianPoint from StepGeom;
aControlPointsList : HArray2OfCartesianPoint from StepGeom;
aSurfaceForm : BSplineSurfaceForm from StepGeom;
aUClosed : Logical from StepData;
aVClosed : Logical from StepData;
aSelfIntersect : Logical from StepData;
aWeightsData : mutable HArray2OfReal from TColStd) is virtual;
aWeightsData : HArray2OfReal from TColStd) is virtual;
-- Specific Methods for Field Data Access --
SetWeightsData(me : mutable; aWeightsData : mutable HArray2OfReal);
WeightsData (me) returns mutable HArray2OfReal;
SetWeightsData(me : mutable; aWeightsData : HArray2OfReal);
WeightsData (me) returns HArray2OfReal;
WeightsDataValue (me; num1 : Integer; num2 : Integer) returns Real;
NbWeightsDataI (me) returns Integer;
NbWeightsDataJ (me) returns Integer;

View File

@@ -25,22 +25,22 @@ uses
HAsciiString from TCollection
is
Create returns mutable RectangularCompositeSurface;
Create returns RectangularCompositeSurface;
---Purpose: Returns a RectangularCompositeSurface
Init (me : mutable;
aName : mutable HAsciiString from TCollection) is redefined;
aName : HAsciiString from TCollection) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aSegments : mutable HArray2OfSurfacePatch from StepGeom) is virtual;
aName : HAsciiString from TCollection;
aSegments : HArray2OfSurfacePatch from StepGeom) is virtual;
-- Specific Methods for Field Data Access --
SetSegments(me : mutable; aSegments : mutable HArray2OfSurfacePatch);
Segments (me) returns mutable HArray2OfSurfacePatch;
SegmentsValue (me; num1 : Integer; num2 : Integer) returns mutable SurfacePatch;
SetSegments(me : mutable; aSegments : HArray2OfSurfacePatch);
Segments (me) returns HArray2OfSurfacePatch;
SegmentsValue (me; num1 : Integer; num2 : Integer) returns SurfacePatch;
NbSegmentsI (me) returns Integer;
NbSegmentsJ (me) returns Integer;

View File

@@ -26,16 +26,16 @@ uses
HAsciiString from TCollection
is
Create returns mutable RectangularTrimmedSurface;
Create returns RectangularTrimmedSurface;
---Purpose: Returns a RectangularTrimmedSurface
Init (me : mutable;
aName : mutable HAsciiString from TCollection) is redefined;
aName : HAsciiString from TCollection) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aBasisSurface : mutable Surface from StepGeom;
aName : HAsciiString from TCollection;
aBasisSurface : Surface from StepGeom;
aU1 : Real from Standard;
aU2 : Real from Standard;
aV1 : Real from Standard;
@@ -45,8 +45,8 @@ is
-- Specific Methods for Field Data Access --
SetBasisSurface(me : mutable; aBasisSurface : mutable Surface);
BasisSurface (me) returns mutable Surface;
SetBasisSurface(me : mutable; aBasisSurface : Surface);
BasisSurface (me) returns Surface;
SetU1(me : mutable; aU1 : Real);
U1 (me) returns Real;
SetU2(me : mutable; aU2 : Real);

View File

@@ -26,19 +26,19 @@ uses
Curve from StepGeom
is
Create returns mutable ReparametrisedCompositeCurveSegment;
Create returns ReparametrisedCompositeCurveSegment;
---Purpose: Returns a ReparametrisedCompositeCurveSegment
Init (me : mutable;
aTransition : TransitionCode from StepGeom;
aSameSense : Boolean from Standard;
aParentCurve : mutable Curve from StepGeom) is redefined;
aParentCurve : Curve from StepGeom) is redefined;
Init (me : mutable;
aTransition : TransitionCode from StepGeom;
aSameSense : Boolean from Standard;
aParentCurve : mutable Curve from StepGeom;
aParentCurve : Curve from StepGeom;
aParamLength : Real from Standard) is virtual;
-- Specific Methods for Field Data Access --

View File

@@ -26,7 +26,7 @@ uses
PreferredSurfaceCurveRepresentation from StepGeom
is
Create returns mutable SeamCurve;
Create returns SeamCurve;
---Purpose: Returns a SeamCurve

View File

@@ -25,17 +25,17 @@ uses
Axis2Placement3d from StepGeom
is
Create returns mutable SphericalSurface;
Create returns SphericalSurface;
---Purpose: Returns a SphericalSurface
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aPosition : mutable Axis2Placement3d from StepGeom) is redefined;
aName : HAsciiString from TCollection;
aPosition : Axis2Placement3d from StepGeom) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aPosition : mutable Axis2Placement3d from StepGeom;
aName : HAsciiString from TCollection;
aPosition : Axis2Placement3d from StepGeom;
aRadius : Real from Standard) is virtual;
-- Specific Methods for Field Data Access --

View File

@@ -23,7 +23,7 @@ uses
HAsciiString from TCollection
is
Create returns mutable Surface;
Create returns Surface;
---Purpose: Returns a Surface

View File

@@ -26,25 +26,25 @@ uses
HAsciiString from TCollection
is
Create returns mutable SurfaceCurve;
Create returns SurfaceCurve;
---Purpose: Returns a SurfaceCurve
Init (me : mutable;
aName : mutable HAsciiString from TCollection) is redefined;
aName : HAsciiString from TCollection) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aCurve3d : mutable Curve from StepGeom;
aAssociatedGeometry : mutable HArray1OfPcurveOrSurface from StepGeom;
aName : HAsciiString from TCollection;
aCurve3d : Curve from StepGeom;
aAssociatedGeometry : HArray1OfPcurveOrSurface from StepGeom;
aMasterRepresentation : PreferredSurfaceCurveRepresentation from StepGeom) is virtual;
-- Specific Methods for Field Data Access --
SetCurve3d(me : mutable; aCurve3d : mutable Curve);
Curve3d (me) returns mutable Curve;
SetAssociatedGeometry(me : mutable; aAssociatedGeometry : mutable HArray1OfPcurveOrSurface);
AssociatedGeometry (me) returns mutable HArray1OfPcurveOrSurface;
SetCurve3d(me : mutable; aCurve3d : Curve);
Curve3d (me) returns Curve;
SetAssociatedGeometry(me : mutable; aAssociatedGeometry : HArray1OfPcurveOrSurface);
AssociatedGeometry (me) returns HArray1OfPcurveOrSurface;
AssociatedGeometryValue (me; num : Integer) returns PcurveOrSurface;
NbAssociatedGeometry (me) returns Integer;
SetMasterRepresentation(me : mutable; aMasterRepresentation : PreferredSurfaceCurveRepresentation);

View File

@@ -26,10 +26,10 @@ uses
is
Create returns mutable SurfaceCurveAndBoundedCurve;
Create returns SurfaceCurveAndBoundedCurve;
---Purpose: creates empty object
BoundedCurve (me: mutable) returns mutable BoundedCurve from StepGeom;
BoundedCurve (me: mutable) returns BoundedCurve from StepGeom;
---Purpose: returns field BoundedCurve
---C++: return &

View File

@@ -25,23 +25,23 @@ uses
Curve from StepGeom
is
Create returns mutable SurfaceOfLinearExtrusion;
Create returns SurfaceOfLinearExtrusion;
---Purpose: Returns a SurfaceOfLinearExtrusion
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aSweptCurve : mutable Curve from StepGeom) is redefined;
aName : HAsciiString from TCollection;
aSweptCurve : Curve from StepGeom) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aSweptCurve : mutable Curve from StepGeom;
aExtrusionAxis : mutable Vector from StepGeom) is virtual;
aName : HAsciiString from TCollection;
aSweptCurve : Curve from StepGeom;
aExtrusionAxis : Vector from StepGeom) is virtual;
-- Specific Methods for Field Data Access --
SetExtrusionAxis(me : mutable; aExtrusionAxis : mutable Vector);
ExtrusionAxis (me) returns mutable Vector;
SetExtrusionAxis(me : mutable; aExtrusionAxis : Vector);
ExtrusionAxis (me) returns Vector;
fields

View File

@@ -25,23 +25,23 @@ uses
Curve from StepGeom
is
Create returns mutable SurfaceOfRevolution;
Create returns SurfaceOfRevolution;
---Purpose: Returns a SurfaceOfRevolution
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aSweptCurve : mutable Curve from StepGeom) is redefined;
aName : HAsciiString from TCollection;
aSweptCurve : Curve from StepGeom) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aSweptCurve : mutable Curve from StepGeom;
aAxisPosition : mutable Axis1Placement from StepGeom) is virtual;
aName : HAsciiString from TCollection;
aSweptCurve : Curve from StepGeom;
aAxisPosition : Axis1Placement from StepGeom) is virtual;
-- Specific Methods for Field Data Access --
SetAxisPosition(me : mutable; aAxisPosition : mutable Axis1Placement);
AxisPosition (me) returns mutable Axis1Placement;
SetAxisPosition(me : mutable; aAxisPosition : Axis1Placement);
AxisPosition (me) returns Axis1Placement;
fields

View File

@@ -25,11 +25,11 @@ uses
Boolean from Standard
is
Create returns mutable SurfacePatch;
Create returns SurfacePatch;
---Purpose: Returns a SurfacePatch
Init (me : mutable;
aParentSurface : mutable BoundedSurface from StepGeom;
aParentSurface : BoundedSurface from StepGeom;
aUTransition : TransitionCode from StepGeom;
aVTransition : TransitionCode from StepGeom;
aUSense : Boolean from Standard;
@@ -37,8 +37,8 @@ is
-- Specific Methods for Field Data Access --
SetParentSurface(me : mutable; aParentSurface : mutable BoundedSurface);
ParentSurface (me) returns mutable BoundedSurface;
SetParentSurface(me : mutable; aParentSurface : BoundedSurface);
ParentSurface (me) returns BoundedSurface;
SetUTransition(me : mutable; aUTransition : TransitionCode);
UTransition (me) returns TransitionCode;
SetVTransition(me : mutable; aVTransition : TransitionCode);

View File

@@ -24,24 +24,24 @@ uses
HAsciiString from TCollection
is
Create returns mutable SurfaceReplica;
Create returns SurfaceReplica;
---Purpose: Returns a SurfaceReplica
Init (me : mutable;
aName : mutable HAsciiString from TCollection) is redefined;
aName : HAsciiString from TCollection) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aParentSurface : mutable Surface from StepGeom;
aTransformation : mutable CartesianTransformationOperator3d from StepGeom) is virtual;
aName : HAsciiString from TCollection;
aParentSurface : Surface from StepGeom;
aTransformation : CartesianTransformationOperator3d from StepGeom) is virtual;
-- Specific Methods for Field Data Access --
SetParentSurface(me : mutable; aParentSurface : mutable Surface);
ParentSurface (me) returns mutable Surface;
SetTransformation(me : mutable; aTransformation : mutable CartesianTransformationOperator3d);
Transformation (me) returns mutable CartesianTransformationOperator3d;
SetParentSurface(me : mutable; aParentSurface : Surface);
ParentSurface (me) returns Surface;
SetTransformation(me : mutable; aTransformation : CartesianTransformationOperator3d);
Transformation (me) returns CartesianTransformationOperator3d;
fields

View File

@@ -24,21 +24,21 @@ uses
HAsciiString from TCollection
is
Create returns mutable SweptSurface;
Create returns SweptSurface;
---Purpose: Returns a SweptSurface
Init (me : mutable;
aName : mutable HAsciiString from TCollection) is redefined;
aName : HAsciiString from TCollection) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aSweptCurve : mutable Curve from StepGeom) is virtual;
aName : HAsciiString from TCollection;
aSweptCurve : Curve from StepGeom) is virtual;
-- Specific Methods for Field Data Access --
SetSweptCurve(me : mutable; aSweptCurve : mutable Curve);
SweptCurve (me) returns mutable Curve;
SetSweptCurve(me : mutable; aSweptCurve : Curve);
SweptCurve (me) returns Curve;
fields

View File

@@ -25,17 +25,17 @@ uses
Axis2Placement3d from StepGeom
is
Create returns mutable ToroidalSurface;
Create returns ToroidalSurface;
---Purpose: Returns a ToroidalSurface
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aPosition : mutable Axis2Placement3d from StepGeom) is redefined;
aName : HAsciiString from TCollection;
aPosition : Axis2Placement3d from StepGeom) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aPosition : mutable Axis2Placement3d from StepGeom;
aName : HAsciiString from TCollection;
aPosition : Axis2Placement3d from StepGeom;
aMajorRadius : Real from Standard;
aMinorRadius : Real from Standard) is virtual;

View File

@@ -28,31 +28,31 @@ uses
HAsciiString from TCollection
is
Create returns mutable TrimmedCurve;
Create returns TrimmedCurve;
---Purpose: Returns a TrimmedCurve
Init (me : mutable;
aName : mutable HAsciiString from TCollection) is redefined;
aName : HAsciiString from TCollection) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aBasisCurve : mutable Curve from StepGeom;
aTrim1 : mutable HArray1OfTrimmingSelect from StepGeom;
aTrim2 : mutable HArray1OfTrimmingSelect from StepGeom;
aName : HAsciiString from TCollection;
aBasisCurve : Curve from StepGeom;
aTrim1 : HArray1OfTrimmingSelect from StepGeom;
aTrim2 : HArray1OfTrimmingSelect from StepGeom;
aSenseAgreement : Boolean from Standard;
aMasterRepresentation : TrimmingPreference from StepGeom) is virtual;
-- Specific Methods for Field Data Access --
SetBasisCurve(me : mutable; aBasisCurve : mutable Curve);
BasisCurve (me) returns mutable Curve;
SetTrim1(me : mutable; aTrim1 : mutable HArray1OfTrimmingSelect);
Trim1 (me) returns mutable HArray1OfTrimmingSelect;
SetBasisCurve(me : mutable; aBasisCurve : Curve);
BasisCurve (me) returns Curve;
SetTrim1(me : mutable; aTrim1 : HArray1OfTrimmingSelect);
Trim1 (me) returns HArray1OfTrimmingSelect;
Trim1Value (me; num : Integer) returns TrimmingSelect;
NbTrim1 (me) returns Integer;
SetTrim2(me : mutable; aTrim2 : mutable HArray1OfTrimmingSelect);
Trim2 (me) returns mutable HArray1OfTrimmingSelect;
SetTrim2(me : mutable; aTrim2 : HArray1OfTrimmingSelect);
Trim2 (me) returns HArray1OfTrimmingSelect;
Trim2Value (me; num : Integer) returns TrimmingSelect;
NbTrim2 (me) returns Integer;
SetSenseAgreement(me : mutable; aSenseAgreement : Boolean);

View File

@@ -23,7 +23,7 @@ uses CString
is
Create returns mutable TrimmingMember;
Create returns TrimmingMember;
HasName (me) returns Boolean is redefined;
-- returns True

View File

@@ -27,7 +27,7 @@ uses
Logical from StepData
is
Create returns mutable UniformCurve;
Create returns UniformCurve;
---Purpose: Returns a UniformCurve

View File

@@ -34,48 +34,48 @@ uses
Real from Standard
is
Create returns mutable UniformCurveAndRationalBSplineCurve;
Create returns UniformCurveAndRationalBSplineCurve;
---Purpose: Returns a UniformCurveAndRationalBSplineCurve
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
aDegree : Integer from Standard;
aControlPointsList : mutable HArray1OfCartesianPoint from StepGeom;
aControlPointsList : HArray1OfCartesianPoint from StepGeom;
aCurveForm : BSplineCurveForm from StepGeom;
aClosedCurve : Logical from StepData;
aSelfIntersect : Logical from StepData) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
aDegree : Integer from Standard;
aControlPointsList : mutable HArray1OfCartesianPoint from StepGeom;
aControlPointsList : HArray1OfCartesianPoint from StepGeom;
aCurveForm : BSplineCurveForm from StepGeom;
aClosedCurve : Logical from StepData;
aSelfIntersect : Logical from StepData;
aUniformCurve : mutable UniformCurve from StepGeom;
aRationalBSplineCurve : mutable RationalBSplineCurve from StepGeom) is virtual;
aUniformCurve : UniformCurve from StepGeom;
aRationalBSplineCurve : RationalBSplineCurve from StepGeom) is virtual;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
aDegree : Integer from Standard;
aControlPointsList : mutable HArray1OfCartesianPoint from StepGeom;
aControlPointsList : HArray1OfCartesianPoint from StepGeom;
aCurveForm : BSplineCurveForm from StepGeom;
aClosedCurve : Logical from StepData;
aSelfIntersect : Logical from StepData;
aWeightsData : mutable HArray1OfReal from TColStd) is virtual;
aWeightsData : HArray1OfReal from TColStd) is virtual;
-- Specific Methods for Field Data Access --
SetUniformCurve(me : mutable; aUniformCurve : mutable UniformCurve);
UniformCurve (me) returns mutable UniformCurve;
SetRationalBSplineCurve(me : mutable; aRationalBSplineCurve : mutable RationalBSplineCurve);
RationalBSplineCurve (me) returns mutable RationalBSplineCurve;
SetUniformCurve(me : mutable; aUniformCurve : UniformCurve);
UniformCurve (me) returns UniformCurve;
SetRationalBSplineCurve(me : mutable; aRationalBSplineCurve : RationalBSplineCurve);
RationalBSplineCurve (me) returns RationalBSplineCurve;
-- Specific Methods for ANDOR Field Data Access --
SetWeightsData(me : mutable; aWeightsData : mutable HArray1OfReal);
WeightsData (me) returns mutable HArray1OfReal;
SetWeightsData(me : mutable; aWeightsData : HArray1OfReal);
WeightsData (me) returns HArray1OfReal;
WeightsDataValue (me; num : Integer) returns Real;
NbWeightsData (me) returns Integer;

View File

@@ -27,7 +27,7 @@ uses
Logical from StepData
is
Create returns mutable UniformSurface;
Create returns UniformSurface;
---Purpose: Returns a UniformSurface

View File

@@ -34,54 +34,54 @@ uses
Real from Standard
is
Create returns mutable UniformSurfaceAndRationalBSplineSurface;
Create returns UniformSurfaceAndRationalBSplineSurface;
---Purpose: Returns a UniformSurfaceAndRationalBSplineSurface
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
aUDegree : Integer from Standard;
aVDegree : Integer from Standard;
aControlPointsList : mutable HArray2OfCartesianPoint from StepGeom;
aControlPointsList : HArray2OfCartesianPoint from StepGeom;
aSurfaceForm : BSplineSurfaceForm from StepGeom;
aUClosed : Logical from StepData;
aVClosed : Logical from StepData;
aSelfIntersect : Logical from StepData) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
aUDegree : Integer from Standard;
aVDegree : Integer from Standard;
aControlPointsList : mutable HArray2OfCartesianPoint from StepGeom;
aControlPointsList : HArray2OfCartesianPoint from StepGeom;
aSurfaceForm : BSplineSurfaceForm from StepGeom;
aUClosed : Logical from StepData;
aVClosed : Logical from StepData;
aSelfIntersect : Logical from StepData;
aUniformSurface : mutable UniformSurface from StepGeom;
aRationalBSplineSurface : mutable RationalBSplineSurface from StepGeom) is virtual;
aUniformSurface : UniformSurface from StepGeom;
aRationalBSplineSurface : RationalBSplineSurface from StepGeom) is virtual;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
aUDegree : Integer from Standard;
aVDegree : Integer from Standard;
aControlPointsList : mutable HArray2OfCartesianPoint from StepGeom;
aControlPointsList : HArray2OfCartesianPoint from StepGeom;
aSurfaceForm : BSplineSurfaceForm from StepGeom;
aUClosed : Logical from StepData;
aVClosed : Logical from StepData;
aSelfIntersect : Logical from StepData;
aWeightsData : mutable HArray2OfReal from TColStd) is virtual;
aWeightsData : HArray2OfReal from TColStd) is virtual;
-- Specific Methods for Field Data Access --
SetUniformSurface(me : mutable; aUniformSurface : mutable UniformSurface);
UniformSurface (me) returns mutable UniformSurface;
SetRationalBSplineSurface(me : mutable; aRationalBSplineSurface : mutable RationalBSplineSurface);
RationalBSplineSurface (me) returns mutable RationalBSplineSurface;
SetUniformSurface(me : mutable; aUniformSurface : UniformSurface);
UniformSurface (me) returns UniformSurface;
SetRationalBSplineSurface(me : mutable; aRationalBSplineSurface : RationalBSplineSurface);
RationalBSplineSurface (me) returns RationalBSplineSurface;
-- Specific Methods for ANDOR Field Data Access --
SetWeightsData(me : mutable; aWeightsData : mutable HArray2OfReal);
WeightsData (me) returns mutable HArray2OfReal;
SetWeightsData(me : mutable; aWeightsData : HArray2OfReal);
WeightsData (me) returns HArray2OfReal;
WeightsDataValue (me; num1 : Integer; num2 : Integer) returns Real;
NbWeightsDataI (me) returns Integer;
NbWeightsDataJ (me) returns Integer;

View File

@@ -25,22 +25,22 @@ uses
HAsciiString from TCollection
is
Create returns mutable Vector;
Create returns Vector;
---Purpose: Returns a Vector
Init (me : mutable;
aName : mutable HAsciiString from TCollection) is redefined;
aName : HAsciiString from TCollection) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aOrientation : mutable Direction from StepGeom;
aName : HAsciiString from TCollection;
aOrientation : Direction from StepGeom;
aMagnitude : Real from Standard) is virtual;
-- Specific Methods for Field Data Access --
SetOrientation(me : mutable; aOrientation : mutable Direction);
Orientation (me) returns mutable Direction;
SetOrientation(me : mutable; aOrientation : Direction);
Orientation (me) returns Direction;
SetMagnitude(me : mutable; aMagnitude : Real);
Magnitude (me) returns Real;