blob: 32c512f281552abcc3131858584b18c7c6a37a2d (
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
// File Aspect_MarkMap.cxx
// Created Janvier 1995
// Author GG
//-Copyright MatraDatavision 1991,1992,1993,1994
//-Version
//-Design Declaration des variables specifiques aux Ensembles
// de Markers
//-Warning Une MarkMap est definie par un ensemble de MarkMapEntries
//-References
//-Language C++ 2.0
//-Declarations
// for the class
#include <Aspect_MarkMap.ixx>
//-Aliases
//-Global data definitions
// mydata : SequenceOfMarkMapEntry from Aspect is protected
//-Constructors
//-Destructors
//-Methods, in order
Aspect_MarkMap::Aspect_MarkMap( ) {
Aspect_MarkMapEntry theDefaultEntry;
AddEntry(theDefaultEntry);
}
void Aspect_MarkMap::AddEntry (const Aspect_MarkMapEntry& AnEntry) {
Standard_Integer i,index = AnEntry.Index();
Aspect_MarkMapEntry theEntry;
for( i=1 ; i<=mydata.Length() ; i++ ) {
theEntry = mydata.Value(i);
if( index == theEntry.Index() ) break;
}
if( i > mydata.Length() ) {
mydata.Append( AnEntry );
} else {
mydata.SetValue(i,AnEntry);
}
}
Standard_Integer Aspect_MarkMap::AddEntry (const Aspect_MarkerStyle &aStyle) {
Aspect_MarkMapEntry theEntry ;
Standard_Integer i,maxindex = 0 ;
for( i=1 ; i<=mydata.Length() ; i++ ) {
theEntry = mydata.Value(i) ;
maxindex = Max(maxindex,theEntry.Index()) ;
if( theEntry.Style() == aStyle ) return theEntry.Index() ;
}
maxindex++ ;
theEntry.SetValue(maxindex,aStyle) ;
mydata.Append( theEntry ) ;
return maxindex ;
}
Standard_Integer Aspect_MarkMap::Size() const {
return mydata.Length() ;
}
Standard_Integer Aspect_MarkMap::Index(const Standard_Integer anIndex) const {
if( anIndex < 1 || anIndex > Size() ) {
Aspect_BadAccess::Raise ("Undefined markmap Index");
}
Aspect_MarkMapEntry theEntry = mydata.Value(anIndex) ;
return theEntry.Index() ;
}
Aspect_MarkMapEntry Aspect_MarkMap::Entry (const Standard_Integer AnIndex) const {
if( AnIndex < 1 || AnIndex > mydata.Length() )
Aspect_BadAccess::Raise ("Aspect_MarkMap::Entry Bad Index");
return mydata.Value(AnIndex);
}
void Aspect_MarkMap::Dump () const {
Standard_Integer i ;
cout << "Markmap Dump-->\n" ;
for ( i = 1 ; i <= Size() ; i++ ) (Entry(i)).Dump() ;
cout << "<--End Markmap Dump\n" ;
}
|