Integration of OCCT 6.5.0 from SVN
[occt.git] / src / StepFEA / StepFEA_FreedomAndCoefficient.cxx
1 // File:        StepFEA_FreedomAndCoefficient.cxx
2 // Created:     Sat Dec 14 11:02:05 2002 
3 // Author:      data exchange team
4 // Generator:   ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.2
5 // Copyright:   Open CASCADE 2002
6
7 #include <StepFEA_FreedomAndCoefficient.ixx>
8
9 //=======================================================================
10 //function : StepFEA_FreedomAndCoefficient
11 //purpose  : 
12 //=======================================================================
13
14 StepFEA_FreedomAndCoefficient::StepFEA_FreedomAndCoefficient ()
15 {
16 }
17
18 //=======================================================================
19 //function : Init
20 //purpose  : 
21 //=======================================================================
22
23 void StepFEA_FreedomAndCoefficient::Init (const StepFEA_DegreeOfFreedom &aFreedom,
24                                           const StepElement_MeasureOrUnspecifiedValue &aA)
25 {
26
27   theFreedom = aFreedom;
28
29   theA = aA;
30 }
31
32 //=======================================================================
33 //function : Freedom
34 //purpose  : 
35 //=======================================================================
36
37 StepFEA_DegreeOfFreedom StepFEA_FreedomAndCoefficient::Freedom () const
38 {
39   return theFreedom;
40 }
41
42 //=======================================================================
43 //function : SetFreedom
44 //purpose  : 
45 //=======================================================================
46
47 void StepFEA_FreedomAndCoefficient::SetFreedom (const StepFEA_DegreeOfFreedom &aFreedom)
48 {
49   theFreedom = aFreedom;
50 }
51
52 //=======================================================================
53 //function : A
54 //purpose  : 
55 //=======================================================================
56
57 StepElement_MeasureOrUnspecifiedValue StepFEA_FreedomAndCoefficient::A () const
58 {
59   return theA;
60 }
61
62 //=======================================================================
63 //function : SetA
64 //purpose  : 
65 //=======================================================================
66
67 void StepFEA_FreedomAndCoefficient::SetA (const StepElement_MeasureOrUnspecifiedValue &aA)
68 {
69   theA = aA;
70 }