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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
// File: StepElement_ElementAspectMember.cxx
// Created: Tue Dec 10 18:12:58 2002
// Author: data exchange team
// Generator: ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V2.0
// Copyright: Open CASCADE 2002
#include <StepElement_ElementAspectMember.ixx>
#include <TCollection_HAsciiString.hxx>
static Standard_CString aElementVolume = "ELEMENT_VOLUME";
static Standard_CString aVolume3dFace = "VOLUME_3D_FACE";
static Standard_CString aVolume2dFace = "VOLUME_2D_FACE";
static Standard_CString aVolume3dEdge = "VOLUME_3D_EDGE";
static Standard_CString aVolume2dEdge = "VOLUME_2D_EDGE";
static Standard_CString aSurface3dFace = "SURFACE_3D_FACE";
static Standard_CString aSurface2dFace = "SURFACE_2D_FACE";
static Standard_CString aSurface3dEdge = "SURFACE_3D_EDGE";
static Standard_CString aSurface2dEdge = "SURFACE_2D_EDGE";
static Standard_CString aCurveEdge = "CURVE_EDGE";
//=======================================================================
//function : StepElement_ElementAspectMember
//purpose :
//=======================================================================
StepElement_ElementAspectMember::StepElement_ElementAspectMember () : mycase(0)
{
}
//=======================================================================
//function : HasName
//purpose :
//=======================================================================
Standard_Boolean StepElement_ElementAspectMember::HasName() const
{
return mycase >0;
}
//=======================================================================
//function : Name
//purpose :
//=======================================================================
Standard_CString StepElement_ElementAspectMember::Name() const
{
switch(mycase) {
case 1 : return aElementVolume;
case 2 : return aVolume3dFace;
case 3 : return aVolume2dFace;
case 4 : return aVolume3dEdge;
case 5 : return aVolume2dEdge;
case 6 : return aSurface3dFace;
case 7 : return aSurface2dFace;
case 8 : return aSurface3dEdge;
case 9 : return aSurface2dEdge;
case 10 : return aCurveEdge;
default : break;
}
return "";
}
//=======================================================================
//function : CompareNames
//purpose :
//=======================================================================
static Standard_Integer CompareNames(const Standard_CString name,Standard_Integer &numen)
{
Standard_Integer thecase =0;
if (!name || name[0] == '\0') thecase = 0;
else if(!strcmp (name,aElementVolume)) {
thecase = 1;
numen = 1;
}
else if(!strcmp (name,aVolume3dFace)) thecase = 2;
else if(!strcmp (name,aVolume2dFace)) thecase = 3;
else if(!strcmp (name,aVolume3dEdge)) thecase = 4;
else if(!strcmp (name,aVolume2dEdge)) thecase = 5;
else if(!strcmp (name,aSurface3dFace)) thecase = 6;
else if(!strcmp (name,aSurface2dFace)) thecase = 7;
else if(!strcmp (name,aSurface3dEdge)) thecase = 8;
else if(!strcmp (name,aSurface2dEdge)) thecase = 9;
else if(!strcmp (name,aCurveEdge)) {
thecase = 10;
numen = 1;
}
return thecase;
}
//=======================================================================
//function : SetName
//purpose :
//=======================================================================
Standard_Boolean StepElement_ElementAspectMember::SetName(const Standard_CString name)
{
Standard_Integer numit =0;
mycase = CompareNames(name,numit);
if(numit) SetInteger(numit);
return (mycase >0);
}
//=======================================================================
//function : Matches
//purpose :
//=======================================================================
Standard_Boolean StepElement_ElementAspectMember::Matches(const Standard_CString name) const
{
Standard_Integer numit =0;
Standard_Integer thecase = CompareNames(name,numit);
return (mycase==thecase);
}
|