Integration of OCCT 6.5.0 from SVN
[occt.git] / src / StepFEA / StepFEA_FeaShellShearStiffness.cxx
CommitLineData
7fd59977 1// File: StepFEA_FeaShellShearStiffness.cxx
2// Created: Thu Dec 12 17:51:06 2002
3// Author: data exchange team
4// Generator: ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.2
5// Copyright: Open CASCADE 2002
6
7#include <StepFEA_FeaShellShearStiffness.ixx>
8
9//=======================================================================
10//function : StepFEA_FeaShellShearStiffness
11//purpose :
12//=======================================================================
13
14StepFEA_FeaShellShearStiffness::StepFEA_FeaShellShearStiffness ()
15{
16}
17
18//=======================================================================
19//function : Init
20//purpose :
21//=======================================================================
22
23void StepFEA_FeaShellShearStiffness::Init (const Handle(TCollection_HAsciiString) &aRepresentationItem_Name,
24 const StepFEA_SymmetricTensor22d &aFeaConstants)
25{
26 StepFEA_FeaMaterialPropertyRepresentationItem::Init(aRepresentationItem_Name);
27
28 theFeaConstants = aFeaConstants;
29}
30
31//=======================================================================
32//function : FeaConstants
33//purpose :
34//=======================================================================
35
36StepFEA_SymmetricTensor22d StepFEA_FeaShellShearStiffness::FeaConstants () const
37{
38 return theFeaConstants;
39}
40
41//=======================================================================
42//function : SetFeaConstants
43//purpose :
44//=======================================================================
45
46void StepFEA_FeaShellShearStiffness::SetFeaConstants (const StepFEA_SymmetricTensor22d &aFeaConstants)
47{
48 theFeaConstants = aFeaConstants;
49}