1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-09-03 14:10:33 +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

@@ -29,7 +29,7 @@ is
Create returns RWAxis1Placement;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable Axis1Placement from StepGeom);
ach : in out Check; ent : Axis1Placement from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : Axis1Placement from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWAxis2Placement2d;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable Axis2Placement2d from StepGeom);
ach : in out Check; ent : Axis2Placement2d from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : Axis2Placement2d from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWAxis2Placement3d;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable Axis2Placement3d from StepGeom);
ach : in out Check; ent : Axis2Placement3d from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : Axis2Placement3d from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWBSplineCurve;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable BSplineCurve from StepGeom);
ach : in out Check; ent : BSplineCurve from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : BSplineCurve from StepGeom);

View File

@@ -30,7 +30,7 @@ is
Create returns RWBSplineCurveWithKnots;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable BSplineCurveWithKnots from StepGeom);
ach : in out Check; ent : BSplineCurveWithKnots from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : BSplineCurveWithKnots from StepGeom);

View File

@@ -30,7 +30,7 @@ is
Create returns RWBSplineCurveWithKnotsAndRationalBSplineCurve;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable BSplineCurveWithKnotsAndRationalBSplineCurve from StepGeom);
ach : in out Check; ent : BSplineCurveWithKnotsAndRationalBSplineCurve from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : BSplineCurveWithKnotsAndRationalBSplineCurve from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWBSplineSurface;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable BSplineSurface from StepGeom);
ach : in out Check; ent : BSplineSurface from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : BSplineSurface from StepGeom);

View File

@@ -30,7 +30,7 @@ is
Create returns RWBSplineSurfaceWithKnots;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable BSplineSurfaceWithKnots from StepGeom);
ach : in out Check; ent : BSplineSurfaceWithKnots from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : BSplineSurfaceWithKnots from StepGeom);

View File

@@ -30,7 +30,7 @@ is
Create returns RWBSplineSurfaceWithKnotsAndRationalBSplineSurface;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable BSplineSurfaceWithKnotsAndRationalBSplineSurface from StepGeom);
ach : in out Check; ent : BSplineSurfaceWithKnotsAndRationalBSplineSurface from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : BSplineSurfaceWithKnotsAndRationalBSplineSurface from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWBezierCurve;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable BezierCurve from StepGeom);
ach : in out Check; ent : BezierCurve from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : BezierCurve from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWBezierCurveAndRationalBSplineCurve;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable BezierCurveAndRationalBSplineCurve from StepGeom);
ach : in out Check; ent : BezierCurveAndRationalBSplineCurve from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : BezierCurveAndRationalBSplineCurve from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWBezierSurface;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable BezierSurface from StepGeom);
ach : in out Check; ent : BezierSurface from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : BezierSurface from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWBezierSurfaceAndRationalBSplineSurface;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable BezierSurfaceAndRationalBSplineSurface from StepGeom);
ach : in out Check; ent : BezierSurfaceAndRationalBSplineSurface from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : BezierSurfaceAndRationalBSplineSurface from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWBoundaryCurve;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable BoundaryCurve from StepGeom);
ach : in out Check; ent : BoundaryCurve from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : BoundaryCurve from StepGeom);

View File

@@ -28,7 +28,7 @@ is
Create returns RWBoundedCurve;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable BoundedCurve from StepGeom);
ach : in out Check; ent : BoundedCurve from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : BoundedCurve from StepGeom);

View File

@@ -28,7 +28,7 @@ is
Create returns RWBoundedSurface;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable BoundedSurface from StepGeom);
ach : in out Check; ent : BoundedSurface from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : BoundedSurface from StepGeom);

View File

@@ -28,7 +28,7 @@ is
Create returns RWCartesianPoint;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable CartesianPoint from StepGeom);
ach : in out Check; ent : CartesianPoint from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : CartesianPoint from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWCartesianTransformationOperator;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable CartesianTransformationOperator from StepGeom);
ach : in out Check; ent : CartesianTransformationOperator from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : CartesianTransformationOperator from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWCartesianTransformationOperator3d;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable CartesianTransformationOperator3d from StepGeom);
ach : in out Check; ent : CartesianTransformationOperator3d from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : CartesianTransformationOperator3d from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWCircle;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable Circle from StepGeom);
ach : in out Check; ent : Circle from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : Circle from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWCompositeCurve;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable CompositeCurve from StepGeom);
ach : in out Check; ent : CompositeCurve from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : CompositeCurve from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWCompositeCurveOnSurface;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable CompositeCurveOnSurface from StepGeom);
ach : in out Check; ent : CompositeCurveOnSurface from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : CompositeCurveOnSurface from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWCompositeCurveSegment;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable CompositeCurveSegment from StepGeom);
ach : in out Check; ent : CompositeCurveSegment from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : CompositeCurveSegment from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWConic;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable Conic from StepGeom);
ach : in out Check; ent : Conic from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : Conic from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWConicalSurface;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable ConicalSurface from StepGeom);
ach : in out Check; ent : ConicalSurface from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : ConicalSurface from StepGeom);

View File

@@ -28,7 +28,7 @@ is
Create returns RWCurve;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable Curve from StepGeom);
ach : in out Check; ent : Curve from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : Curve from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWCurveReplica;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable CurveReplica from StepGeom);
ach : in out Check; ent : CurveReplica from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : CurveReplica from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWCylindricalSurface;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable CylindricalSurface from StepGeom);
ach : in out Check; ent : CylindricalSurface from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : CylindricalSurface from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWDegeneratePcurve;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable DegeneratePcurve from StepGeom);
ach : in out Check; ent : DegeneratePcurve from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : DegeneratePcurve from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWDegenerateToroidalSurface;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable DegenerateToroidalSurface from StepGeom);
ach : in out Check; ent : DegenerateToroidalSurface from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : DegenerateToroidalSurface from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWDirection;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable Direction from StepGeom);
ach : in out Check; ent : Direction from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : Direction from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWElementarySurface;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable ElementarySurface from StepGeom);
ach : in out Check; ent : ElementarySurface from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : ElementarySurface from StepGeom);

View File

@@ -30,7 +30,7 @@ is
Create returns RWEllipse;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable Ellipse from StepGeom);
ach : in out Check; ent : Ellipse from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : Ellipse from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWEvaluatedDegeneratePcurve;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable EvaluatedDegeneratePcurve from StepGeom);
ach : in out Check; ent : EvaluatedDegeneratePcurve from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : EvaluatedDegeneratePcurve from StepGeom);

View File

@@ -33,7 +33,7 @@ is
data : StepReaderData;
num : Integer;
ach : in out Check;
ent : mutable GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx from StepGeom);
ent : GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx from StepGeom);
WriteStep (me; SW : in out StepWriter;
ent : GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx from StepGeom);

View File

@@ -28,7 +28,7 @@ is
Create returns RWGeometricRepresentationContext;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable GeometricRepresentationContext from StepGeom);
ach : in out Check; ent : GeometricRepresentationContext from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : GeometricRepresentationContext from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWGeometricRepresentationContextAndGlobalUnitAssignedContext;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable GeometricRepresentationContextAndGlobalUnitAssignedContext from StepGeom);
ach : in out Check; ent : GeometricRepresentationContextAndGlobalUnitAssignedContext from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : GeometricRepresentationContextAndGlobalUnitAssignedContext from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWGeometricRepresentationContextAndParametricRepresentationContext;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable GeometricRepresentationContextAndParametricRepresentationContext from StepGeom);
ach : in out Check; ent : GeometricRepresentationContextAndParametricRepresentationContext from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : GeometricRepresentationContextAndParametricRepresentationContext from StepGeom);

View File

@@ -28,7 +28,7 @@ is
Create returns RWGeometricRepresentationItem;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable GeometricRepresentationItem from StepGeom);
ach : in out Check; ent : GeometricRepresentationItem from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : GeometricRepresentationItem from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWHyperbola;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable Hyperbola from StepGeom);
ach : in out Check; ent : Hyperbola from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : Hyperbola from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWIntersectionCurve;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable IntersectionCurve from StepGeom);
ach : in out Check; ent : IntersectionCurve from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : IntersectionCurve from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWLine;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable Line from StepGeom);
ach : in out Check; ent : Line from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : Line from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWOffsetCurve3d;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable OffsetCurve3d from StepGeom);
ach : in out Check; ent : OffsetCurve3d from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : OffsetCurve3d from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWOffsetSurface;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable OffsetSurface from StepGeom);
ach : in out Check; ent : OffsetSurface from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : OffsetSurface from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWOuterBoundaryCurve;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable OuterBoundaryCurve from StepGeom);
ach : in out Check; ent : OuterBoundaryCurve from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : OuterBoundaryCurve from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWParabola;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable Parabola from StepGeom);
ach : in out Check; ent : Parabola from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : Parabola from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWPcurve;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable Pcurve from StepGeom);
ach : in out Check; ent : Pcurve from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : Pcurve from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWPlacement;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable Placement from StepGeom);
ach : in out Check; ent : Placement from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : Placement from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWPlane;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable Plane from StepGeom);
ach : in out Check; ent : Plane from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : Plane from StepGeom);

View File

@@ -28,7 +28,7 @@ is
Create returns RWPoint;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable Point from StepGeom);
ach : in out Check; ent : Point from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : Point from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWPointOnCurve;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable PointOnCurve from StepGeom);
ach : in out Check; ent : PointOnCurve from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : PointOnCurve from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWPointOnSurface;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable PointOnSurface from StepGeom);
ach : in out Check; ent : PointOnSurface from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : PointOnSurface from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWPointReplica;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable PointReplica from StepGeom);
ach : in out Check; ent : PointReplica from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : PointReplica from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWPolyline;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable Polyline from StepGeom);
ach : in out Check; ent : Polyline from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : Polyline from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWQuasiUniformCurve;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable QuasiUniformCurve from StepGeom);
ach : in out Check; ent : QuasiUniformCurve from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : QuasiUniformCurve from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWQuasiUniformCurveAndRationalBSplineCurve;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable QuasiUniformCurveAndRationalBSplineCurve from StepGeom);
ach : in out Check; ent : QuasiUniformCurveAndRationalBSplineCurve from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : QuasiUniformCurveAndRationalBSplineCurve from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWQuasiUniformSurface;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable QuasiUniformSurface from StepGeom);
ach : in out Check; ent : QuasiUniformSurface from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : QuasiUniformSurface from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWQuasiUniformSurfaceAndRationalBSplineSurface;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable QuasiUniformSurfaceAndRationalBSplineSurface from StepGeom);
ach : in out Check; ent : QuasiUniformSurfaceAndRationalBSplineSurface from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : QuasiUniformSurfaceAndRationalBSplineSurface from StepGeom);

View File

@@ -30,7 +30,7 @@ is
Create returns RWRationalBSplineCurve;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable RationalBSplineCurve from StepGeom);
ach : in out Check; ent : RationalBSplineCurve from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : RationalBSplineCurve from StepGeom);

View File

@@ -30,7 +30,7 @@ is
Create returns RWRationalBSplineSurface;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable RationalBSplineSurface from StepGeom);
ach : in out Check; ent : RationalBSplineSurface from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : RationalBSplineSurface from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWRectangularCompositeSurface;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable RectangularCompositeSurface from StepGeom);
ach : in out Check; ent : RectangularCompositeSurface from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : RectangularCompositeSurface from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWRectangularTrimmedSurface;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable RectangularTrimmedSurface from StepGeom);
ach : in out Check; ent : RectangularTrimmedSurface from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : RectangularTrimmedSurface from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWReparametrisedCompositeCurveSegment;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable ReparametrisedCompositeCurveSegment from StepGeom);
ach : in out Check; ent : ReparametrisedCompositeCurveSegment from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : ReparametrisedCompositeCurveSegment from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWSeamCurve;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable SeamCurve from StepGeom);
ach : in out Check; ent : SeamCurve from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : SeamCurve from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWSphericalSurface;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable SphericalSurface from StepGeom);
ach : in out Check; ent : SphericalSurface from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : SphericalSurface from StepGeom);

View File

@@ -28,7 +28,7 @@ is
Create returns RWSurface;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable Surface from StepGeom);
ach : in out Check; ent : Surface from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : Surface from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWSurfaceCurve;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable SurfaceCurve from StepGeom);
ach : in out Check; ent : SurfaceCurve from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : SurfaceCurve from StepGeom);

View File

@@ -30,7 +30,7 @@ is
Create returns RWSurfaceCurveAndBoundedCurve;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable SurfaceCurveAndBoundedCurve from StepGeom);
ach : in out Check; ent : SurfaceCurveAndBoundedCurve from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : SurfaceCurveAndBoundedCurve from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWSurfaceOfLinearExtrusion;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable SurfaceOfLinearExtrusion from StepGeom);
ach : in out Check; ent : SurfaceOfLinearExtrusion from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : SurfaceOfLinearExtrusion from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWSurfaceOfRevolution;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable SurfaceOfRevolution from StepGeom);
ach : in out Check; ent : SurfaceOfRevolution from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : SurfaceOfRevolution from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWSurfacePatch;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable SurfacePatch from StepGeom);
ach : in out Check; ent : SurfacePatch from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : SurfacePatch from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWSurfaceReplica;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable SurfaceReplica from StepGeom);
ach : in out Check; ent : SurfaceReplica from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : SurfaceReplica from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWSweptSurface;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable SweptSurface from StepGeom);
ach : in out Check; ent : SweptSurface from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : SweptSurface from StepGeom);

View File

@@ -30,7 +30,7 @@ is
Create returns RWToroidalSurface;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable ToroidalSurface from StepGeom);
ach : in out Check; ent : ToroidalSurface from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : ToroidalSurface from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWTrimmedCurve;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable TrimmedCurve from StepGeom);
ach : in out Check; ent : TrimmedCurve from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : TrimmedCurve from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWUniformCurve;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable UniformCurve from StepGeom);
ach : in out Check; ent : UniformCurve from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : UniformCurve from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWUniformCurveAndRationalBSplineCurve;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable UniformCurveAndRationalBSplineCurve from StepGeom);
ach : in out Check; ent : UniformCurveAndRationalBSplineCurve from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : UniformCurveAndRationalBSplineCurve from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWUniformSurface;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable UniformSurface from StepGeom);
ach : in out Check; ent : UniformSurface from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : UniformSurface from StepGeom);

View File

@@ -29,7 +29,7 @@ is
Create returns RWUniformSurfaceAndRationalBSplineSurface;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable UniformSurfaceAndRationalBSplineSurface from StepGeom);
ach : in out Check; ent : UniformSurfaceAndRationalBSplineSurface from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : UniformSurfaceAndRationalBSplineSurface from StepGeom);

View File

@@ -30,7 +30,7 @@ is
Create returns RWVector;
ReadStep (me; data : StepReaderData; num : Integer;
ach : in out Check; ent : mutable Vector from StepGeom);
ach : in out Check; ent : Vector from StepGeom);
WriteStep (me; SW : in out StepWriter; ent : Vector from StepGeom);