1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-14 13:30:48 +03:00

Integration of OCCT 6.5.0 from SVN

This commit is contained in:
bugmaster
2011-03-16 07:30:28 +00:00
committed by bugmaster
parent 4903637061
commit 7fd59977df
16375 changed files with 3882564 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
-- File: StepRepr_RepresentationRelationshipWithTransformation.cdl
-- Created: Tue Jun 30 18:09:19 1998
-- Author: Christian CAILLET
-- <cky@heliox.paris1.matra-dtv.fr>
---Copyright: Matra Datavision 1998
class RepresentationRelationshipWithTransformation from StepRepr
inherits ShapeRepresentationRelationship
-- in principle, inherits RepresentationRelationship
-- But <Shape>... only adds a constraint on a field, this allows to
-- simplify the multiple inheritance between ShapeRR and RRWithTransf...
uses
HAsciiString from TCollection,
Representation from StepRepr,
Transformation from StepRepr
is
Create returns mutable RepresentationRelationshipWithTransformation;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aDescription : mutable HAsciiString from TCollection;
aRep1 : mutable Representation from StepRepr;
aRep2 : mutable Representation from StepRepr;
aTransf : Transformation);
TransformationOperator (me) returns Transformation;
SetTransformationOperator (me : mutable; aTrans : Transformation);
fields
theTrans : Transformation;
end RepresentationRelationshipWithTransformation;