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
122
123
124
125
126
|
// File: GCPnts_TangentialDeflection.cxx
// Created: Fri Nov 8 11:19:29 1996
// Author: Jean Claude VAUTHIER
// <jcv@brunox.paris1.matra-dtv.fr>
#include <GCPnts_TangentialDeflection.ixx>
#include <gp_Pnt2d.hxx>
#include <gp_Vec.hxx>
#include <gp_Vec2d.hxx>
#include <gp_XYZ.hxx>
#include <Precision.hxx>
inline static void D0 (const Adaptor3d_Curve& C, const Standard_Real U, gp_Pnt& P)
{
C.D0 (U, P);
}
inline static void D2 (const Adaptor3d_Curve& C, const Standard_Real U,
gp_Pnt& P, gp_Vec& V1, gp_Vec& V2)
{
C.D2 (U, P, V1, V2);
}
static void D0 (const Adaptor2d_Curve2d& C, const Standard_Real U, gp_Pnt& PP)
{
Standard_Real X, Y;
gp_Pnt2d P;
C.D0 (U, P);
P.Coord (X, Y);
PP.SetCoord (X, Y, 0.0);
}
static void D2 (const Adaptor2d_Curve2d& C, const Standard_Real U,
gp_Pnt& PP, gp_Vec& VV1, gp_Vec& VV2)
{
Standard_Real X, Y;
gp_Pnt2d P;
gp_Vec2d V1,V2;
C.D2 (U, P, V1, V2);
P.Coord (X, Y);
PP.SetCoord (X, Y, 0.0);
V1.Coord (X, Y);
VV1.SetCoord (X, Y, 0.0);
V2.Coord (X, Y);
VV2.SetCoord (X, Y, 0.0);
}
//=======================================================================
//function : CPnts_TangentialDeflection
//purpose :
//=======================================================================
GCPnts_TangentialDeflection::GCPnts_TangentialDeflection () { }
//=======================================================================
//function : AddPoint
//purpose :
//=======================================================================
Standard_Integer GCPnts_TangentialDeflection::AddPoint
(const gp_Pnt& thePnt,
const Standard_Real theParam,
const Standard_Boolean theIsReplace)
{
const Standard_Real tol = Precision::PConfusion();
Standard_Integer index = -1;
const Standard_Integer nb = parameters.Length();
for ( Standard_Integer i = 1; index == -1 && i <= nb; i++ )
{
Standard_Real dist = parameters.Value( i ) - theParam;
if ( fabs( dist ) <= tol )
{
index = i;
if ( theIsReplace )
{
points.ChangeValue(i) = thePnt;
parameters.ChangeValue(i) = theParam;
}
}
else if ( dist > tol )
{
points.InsertBefore( i, thePnt );
parameters.InsertBefore( i, theParam );
index = i;
}
}
if ( index == -1 )
{
points.Append( thePnt );
parameters.Append( theParam );
index = parameters.Length();
}
return index;
}
#include <Geom_BezierCurve.hxx>
#include <Geom_BSplineCurve.hxx>
#include <gp_Circ.hxx>
#define TheCurve Adaptor3d_Curve
#define Handle_TheBezierCurve Handle(Geom_BezierCurve)
#define Handle_TheBSplineCurve Handle(Geom_BSplineCurve)
#include <GCPnts_TangentialDeflection.gxx>
#undef Handle_TheBezierCurve
#undef Handle_TheBSplineCurve
#undef TheCurve
#include <Geom2d_BezierCurve.hxx>
#include <Geom2d_BSplineCurve.hxx>
#include <gp_Circ2d.hxx>
#define TheCurve Adaptor2d_Curve2d
#define Handle_TheBezierCurve Handle(Geom2d_BezierCurve)
#define Handle_TheBSplineCurve Handle(Geom2d_BSplineCurve)
#include <GCPnts_TangentialDeflection.gxx>
#undef Handle_TheBezierCurve
#undef Handle_TheBSplineCurve
#undef TheCurve
|