summaryrefslogtreecommitdiff
path: root/src/StepFEA/StepFEA_FeaAxis2Placement3d.cxx
blob: 46c561bb1393de8fa5ac1ea1c6009ec13251012f (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// File:	StepFEA_FeaAxis2Placement3d.cxx
// Created:	Thu Dec 12 17:51:05 2002 
// Author:	data exchange team
// Generator:	ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.2
// Copyright:	Open CASCADE 2002

#include <StepFEA_FeaAxis2Placement3d.ixx>

//=======================================================================
//function : StepFEA_FeaAxis2Placement3d
//purpose  : 
//=======================================================================

StepFEA_FeaAxis2Placement3d::StepFEA_FeaAxis2Placement3d ()
{
}

//=======================================================================
//function : Init
//purpose  : 
//=======================================================================

void StepFEA_FeaAxis2Placement3d::Init (const Handle(TCollection_HAsciiString) &aRepresentationItem_Name,
                                        const Handle(StepGeom_CartesianPoint) &aPlacement_Location,
                                        const Standard_Boolean hasAxis2Placement3d_Axis,
                                        const Handle(StepGeom_Direction) &aAxis2Placement3d_Axis,
                                        const Standard_Boolean hasAxis2Placement3d_RefDirection,
                                        const Handle(StepGeom_Direction) &aAxis2Placement3d_RefDirection,
                                        const StepFEA_CoordinateSystemType aSystemType,
                                        const Handle(TCollection_HAsciiString) &aDescription)
{
  StepGeom_Axis2Placement3d::Init(aRepresentationItem_Name,
                                  aPlacement_Location,
                                  hasAxis2Placement3d_Axis,
                                  aAxis2Placement3d_Axis,
                                  hasAxis2Placement3d_RefDirection,
                                  aAxis2Placement3d_RefDirection);

  theSystemType = aSystemType;

  theDescription = aDescription;
}

//=======================================================================
//function : SystemType
//purpose  : 
//=======================================================================

StepFEA_CoordinateSystemType StepFEA_FeaAxis2Placement3d::SystemType () const
{
  return theSystemType;
}

//=======================================================================
//function : SetSystemType
//purpose  : 
//=======================================================================

void StepFEA_FeaAxis2Placement3d::SetSystemType (const StepFEA_CoordinateSystemType aSystemType)
{
  theSystemType = aSystemType;
}

//=======================================================================
//function : Description
//purpose  : 
//=======================================================================

Handle(TCollection_HAsciiString) StepFEA_FeaAxis2Placement3d::Description () const
{
  return theDescription;
}

//=======================================================================
//function : SetDescription
//purpose  : 
//=======================================================================

void StepFEA_FeaAxis2Placement3d::SetDescription (const Handle(TCollection_HAsciiString) &aDescription)
{
  theDescription = aDescription;
}