blob: c8f7afcb18566417757650f40801435d67c6cef3 (
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
|
// File: ChFiDS_StripeMap.lxx
// Created: Tue Jan 18 14:00:47 1994
// Author: Isabelle GRIGNON
// <isg@nonox>
//=======================================================================
//function : Extent
//purpose :
//=======================================================================
inline Standard_Integer ChFiDS_StripeMap::Extent() const {
return mymap.Extent();
}
//=======================================================================
//function : FindKey
//purpose :
//=======================================================================
inline const TopoDS_Vertex& ChFiDS_StripeMap::FindKey
(const Standard_Integer I) const {
return mymap.FindKey(I);
}
|