blob: b3104e668f1206c3067e143715230fd805e6e1cd (
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
|
// File: LocOpe_CSIntersector.lxx
// Created: Tue Jun 11 09:11:57 1996
// Author: Jacques GOUSSARD
// <jag@bravox>
#include <StdFail_NotDone.hxx>
//=======================================================================
//function : LocOpe_CSIntersector
//purpose :
//=======================================================================
inline LocOpe_CSIntersector::LocOpe_CSIntersector () :
myDone(Standard_False),myPoints(NULL),myNbelem(0)
{}
//=======================================================================
//function : LocOpe_CSIntersector
//purpose :
//=======================================================================
inline LocOpe_CSIntersector::LocOpe_CSIntersector (const TopoDS_Shape& S):
myDone(Standard_False),myShape(S),myPoints(NULL),myNbelem(0)
{}
//=======================================================================
//function : IsDone
//purpose :
//=======================================================================
inline Standard_Boolean LocOpe_CSIntersector::IsDone () const
{
return myDone;
}
|