blob: a1178225f3f7f0ea518a9d49fc12207ad6b95b61 (
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
|
#include <GCPnts_UniformDeflection.ixx>
#include <StdFail_NotDone.hxx>
#include <Standard_DomainError.hxx>
#include <Standard_OutOfRange.hxx>
#include <Standard_ConstructionError.hxx>
#include <Standard_NotImplemented.hxx>
#include <gp_Pnt2d.hxx>
//
// mask the return of a Adaptor2d_Curve2d as a gp_Pnt
//
static gp_Pnt Value(const Adaptor3d_Curve & C,
const Standard_Real Parameter)
{
return C.Value(Parameter) ;
}
static gp_Pnt Value(const Adaptor2d_Curve2d & C,
const Standard_Real Parameter)
{
gp_Pnt aPoint ;
gp_Pnt2d a2dPoint =
C.Value(Parameter) ;
aPoint.SetX ( a2dPoint.X()) ;
aPoint.SetY ( a2dPoint.Y()) ;
aPoint.SetZ ( 0.0e0) ;
return aPoint ;
}
//=======================================================================
//function : Value
//purpose :
//=======================================================================
gp_Pnt GCPnts_UniformDeflection::Value
(const Standard_Integer Index) const
{
StdFail_NotDone_Raise_if(!myDone,
"GCPnts_UniformAbscissa::Parameter()");
return myPoints.Value(Index) ;
}
//=======================================================================
//function : GCPnts_UniformDeflection
//purpose :
//=======================================================================
GCPnts_UniformDeflection::GCPnts_UniformDeflection ()
:myDone(Standard_False)
{
}
#include <Geom_BezierCurve.hxx>
#include <Geom_BSplineCurve.hxx>
#define TheCurve Adaptor3d_Curve
#define Handle_TheBezierCurve Handle(Geom_BezierCurve)
#define Handle_TheBSplineCurve Handle(Geom_BSplineCurve)
#include <GCPnts_UniformDeflection.gxx>
#undef TheCurve
#undef Handle_TheBezierCurve
#undef Handle_TheBSplineCurve
#include <Geom2d_BezierCurve.hxx>
#include <Geom2d_BSplineCurve.hxx>
#define TheCurve Adaptor2d_Curve2d
#define Handle_TheBezierCurve Handle(Geom2d_BezierCurve)
#define Handle_TheBSplineCurve Handle(Geom2d_BSplineCurve)
#include <GCPnts_UniformDeflection.gxx>
#undef TheCurve
#undef Handle_TheBezierCurve
#undef Handle_TheBSplineCurve
|