blob: 6832755ec29b430b073bc6ef10db17d10a725daf (
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
83
84
|
// File: StepFEA_SymmetricTensor23dMember.cxx
// Created: Tue Dec 10 18:13:00 2002
// Author: data exchange team
// Generator: ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V2.0
// Copyright: Open CASCADE 2002
#include <StepFEA_SymmetricTensor23dMember.ixx>
#include <TCollection_HAsciiString.hxx>
static Standard_CString IST = "ISOTROPIC_SYMMETRIC_TENSOR2_3D";
static Standard_CString OST = "ORTHOTROPIC_SYMMETRIC_TENSOR2_3D";
static Standard_CString AST = "ANISOTROPIC_SYMMETRIC_TENSOR2_3D";
//=======================================================================
//function : StepFEA_SymmetricTensor23dMember
//purpose :
//=======================================================================
StepFEA_SymmetricTensor23dMember::StepFEA_SymmetricTensor23dMember () : mycase(0)
{
}
//=======================================================================
//function : HasName
//purpose :
//=======================================================================
Standard_Boolean StepFEA_SymmetricTensor23dMember::HasName() const
{
return mycase >0;
}
//=======================================================================
//function : Name
//purpose :
//=======================================================================
Standard_CString StepFEA_SymmetricTensor23dMember::Name() const
{
switch(mycase) {
case 1 : return IST;
case 2 : return OST;
case 3 : return AST;
default : break;
}
return "";
}
//=======================================================================
//function : CompareNames
//purpose :
//=======================================================================
static Standard_Integer CompareNames(const Standard_CString name)
{
Standard_Integer thecase = 0;
if (!name || name[0] == '\0') thecase = 0;
else if(!strcmp (name,IST)) thecase = 1;
else if(!strcmp (name,OST)) thecase = 2;
else if(!strcmp (name,AST)) thecase = 3;
return thecase;
}
//=======================================================================
//function : SetName
//purpose :
//=======================================================================
Standard_Boolean StepFEA_SymmetricTensor23dMember::SetName(const Standard_CString name)
{
mycase = CompareNames(name);
return (mycase >0);
}
//=======================================================================
//function : Matches
//purpose :
//=======================================================================
Standard_Boolean StepFEA_SymmetricTensor23dMember::Matches(const Standard_CString name) const
{
Standard_Integer thecase = CompareNames(name);
return (mycase==thecase);
}
|