blob: d7ef6d2af27c48ea28523646a36783d5f3aeecbe (
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
|
// File: LocOpe_CurveShapeIntersector.lxx
// Created: Mon May 29 16:12:04 1995
// Author: Jacques GOUSSARD
// <jag@bravox>
#include <StdFail_NotDone.hxx>
//=======================================================================
//function : LocOpe_CurveShapeIntersector
//purpose :
//=======================================================================
inline LocOpe_CurveShapeIntersector::LocOpe_CurveShapeIntersector () :
myDone(Standard_False)
{}
//=======================================================================
//function : LocOpe_CurveShapeIntersector
//purpose :
//=======================================================================
inline LocOpe_CurveShapeIntersector::LocOpe_CurveShapeIntersector
(const gp_Ax1& Axis,
const TopoDS_Shape& S)
{
Init(Axis,S);
}
//=======================================================================
//function : LocOpe_CurveShapeIntersector
//purpose :
//=======================================================================
inline LocOpe_CurveShapeIntersector::LocOpe_CurveShapeIntersector
(const gp_Circ& C,
const TopoDS_Shape& S)
{
Init(C,S);
}
//=======================================================================
//function : IsDone
//purpose :
//=======================================================================
inline Standard_Boolean LocOpe_CurveShapeIntersector::IsDone () const
{
return myDone;
}
//=======================================================================
//function : NbPoints
//purpose :
//=======================================================================
inline Standard_Integer LocOpe_CurveShapeIntersector::NbPoints() const
{
if (!myDone) {StdFail_NotDone::Raise();}
return myPoints.Length();
}
//=======================================================================
//function : Point
//purpose :
//=======================================================================
inline const LocOpe_PntFace& LocOpe_CurveShapeIntersector::
Point(const Standard_Integer I) const
{
if (!myDone) {StdFail_NotDone::Raise();}
return myPoints(I);
}
|