blob: d135fd4161996130b8881d8e1d8ba90af9ca69ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#include <StepRepr_ItemDefinedTransformation.ixx>
StepRepr_ItemDefinedTransformation::StepRepr_ItemDefinedTransformation () { }
void StepRepr_ItemDefinedTransformation::Init
(const Handle(TCollection_HAsciiString)& aName,
const Handle(TCollection_HAsciiString)& aDescription,
const Handle(StepRepr_RepresentationItem)& aTransformItem1,
const Handle(StepRepr_RepresentationItem)& aTransformItem2)
{ theName = aName; theDescription = aDescription;
theTransformItem1 = aTransformItem1; theTransformItem2 = aTransformItem2; }
void StepRepr_ItemDefinedTransformation::SetName (const Handle(TCollection_HAsciiString)& aName)
{ theName = aName; }
Handle(TCollection_HAsciiString) StepRepr_ItemDefinedTransformation::Name () const
{ return theName; }
void StepRepr_ItemDefinedTransformation::SetDescription (const Handle(TCollection_HAsciiString)& aDescription)
{ theDescription = aDescription; }
Handle(TCollection_HAsciiString) StepRepr_ItemDefinedTransformation::Description () const
{ return theDescription; }
void StepRepr_ItemDefinedTransformation::SetTransformItem1 (const Handle(StepRepr_RepresentationItem)& aTransformItem1)
{ theTransformItem1 = aTransformItem1; }
Handle(StepRepr_RepresentationItem) StepRepr_ItemDefinedTransformation::TransformItem1 () const
{ return theTransformItem1; }
void StepRepr_ItemDefinedTransformation::SetTransformItem2 (const Handle(StepRepr_RepresentationItem)& aTransformItem2)
{ theTransformItem2 = aTransformItem2; }
Handle(StepRepr_RepresentationItem) StepRepr_ItemDefinedTransformation::TransformItem2 () const
{ return theTransformItem2; }
|