blob: ab8c2268aa915f285f4aff01a19b6df7b61dce63 (
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
// File: MAT2d_CutCurve.cxx
// Created: Fri Sep 23 16:25:59 1994
// Author: Yves FRICAUD
// <yfr@nonox>
#include <MAT2d_CutCurve.ixx>
#include <Geom2dLProp_CurAndInf2d.hxx>
#include <Precision.hxx>
#include <gp_Pnt2d.hxx>
#include <Geom2d_TrimmedCurve.hxx>
#include <TColGeom2d_SequenceOfCurve.hxx>
//=======================================================================
//function : MAT2d_CutCurve
//purpose :
//=======================================================================
MAT2d_CutCurve::MAT2d_CutCurve()
{
}
//=======================================================================
//function : MAT2d_CutCurve
//purpose :
//=======================================================================
MAT2d_CutCurve::MAT2d_CutCurve(const Handle(Geom2d_Curve)& C)
{
Perform (C);
}
//=======================================================================
//function : Perform
//purpose :
//=======================================================================
void MAT2d_CutCurve::Perform(const Handle(Geom2d_Curve)& C)
{
theCurves.Clear();
Geom2dLProp_CurAndInf2d Sommets;
Handle(Geom2d_TrimmedCurve) TrimC;
Standard_Real UF,UL,UC;
gp_Pnt2d PF,PL,PC;
Standard_Real PTol = Precision::PConfusion()*10;
Standard_Real Tol = Precision::Confusion()*10;
Standard_Boolean YaCut = Standard_False;
Sommets.Perform (C);
if (Sommets.IsDone() && !Sommets.IsEmpty()) {
UF = C->FirstParameter();
UL = C->LastParameter ();
PF = C->Value(UF);
PL = C->Value(UL);
for (Standard_Integer i = 1; i <= Sommets.NbPoints(); i++) {
UC = Sommets.Parameter(i);
PC = C->Value(UC);
if (UC - UF > PTol && PC.Distance(PF) > Tol) {
if ( UL - UC < PTol || PL.Distance(PC) < Tol) {
break;
}
TrimC = new Geom2d_TrimmedCurve(C,UF,UC);
theCurves.Append(TrimC);
UF = UC;
PF = PC;
YaCut = Standard_True;
}
}
if (YaCut) {
TrimC = new Geom2d_TrimmedCurve(C,UF,UL);
theCurves.Append(TrimC);
}
}
}
//=======================================================================
//function : UnModified
//purpose :
//=======================================================================
Standard_Boolean MAT2d_CutCurve::UnModified() const
{
return theCurves.IsEmpty();
}
//=======================================================================
//function : NbCurves
//purpose :
//=======================================================================
Standard_Integer MAT2d_CutCurve::NbCurves() const
{
if (UnModified()) {Standard_OutOfRange::Raise();}
return theCurves.Length();
}
//=======================================================================
//function : Value
//purpose :
//=======================================================================
Handle(Geom2d_TrimmedCurve) MAT2d_CutCurve::Value (
const Standard_Integer Index)
const
{
if (UnModified()) {Standard_OutOfRange::Raise();}
if ( Index < 1 || Index > theCurves.Length()) {
Standard_OutOfRange::Raise();
}
return Handle(Geom2d_TrimmedCurve)::DownCast(theCurves.Value(Index));
}
|