Integration of OCCT 6.5.0 from SVN
[occt.git] / src / StepRepr / StepRepr_RepresentationRelationshipWithTransformation.cxx
1 #include <StepRepr_RepresentationRelationshipWithTransformation.ixx>
2
3 StepRepr_RepresentationRelationshipWithTransformation::StepRepr_RepresentationRelationshipWithTransformation ()    {  }
4
5 void  StepRepr_RepresentationRelationshipWithTransformation::Init
6   (const Handle(TCollection_HAsciiString)& aName,
7    const Handle(TCollection_HAsciiString)& aDescription,
8    const Handle(StepRepr_Representation)& aRep1,
9    const Handle(StepRepr_Representation)& aRep2,
10    const StepRepr_Transformation& aTrans)
11 {
12   StepRepr_RepresentationRelationship::Init (aName,aDescription,aRep1,aRep2);
13   theTrans = aTrans;
14 }
15
16 StepRepr_Transformation  StepRepr_RepresentationRelationshipWithTransformation::TransformationOperator () const
17 {  return theTrans;  }
18
19 void  StepRepr_RepresentationRelationshipWithTransformation::SetTransformationOperator (const StepRepr_Transformation& aTrans)
20 {  theTrans = aTrans;  }