1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-16 10:08:36 +03:00
occt/src/Geom2dGcc/Geom2dGcc_CurveTool.cxx
2012-03-05 19:23:40 +04:00

68 lines
1.5 KiB
C++
Executable File

#include <Geom2dGcc_CurveTool.ixx>
#include <Geom2d_Line.hxx>
#include <Geom2d_BezierCurve.hxx>
#include <gp_Pnt.hxx>
#include <gp_Pnt2d.hxx>
#include <gp_Vec2d.hxx>
#include <gp_Vec.hxx>
//Template a respecter
Standard_Real Geom2dGcc_CurveTool::
EpsX (const Geom2dAdaptor_Curve& C ,
const Standard_Real Tol) {
return C.Resolution(Tol);
}
Standard_Integer Geom2dGcc_CurveTool::
NbSamples (const Geom2dAdaptor_Curve& /*C*/) {
return 20;
}
gp_Pnt2d Geom2dGcc_CurveTool::Value (const Geom2dAdaptor_Curve& C,
const Standard_Real U) {
return C.Value(U);
}
Standard_Real
Geom2dGcc_CurveTool::FirstParameter (const Geom2dAdaptor_Curve& C) {
return C.FirstParameter();
}
Standard_Real
Geom2dGcc_CurveTool::LastParameter (const Geom2dAdaptor_Curve& C) {
return C.LastParameter();
}
void Geom2dGcc_CurveTool::D1 (const Geom2dAdaptor_Curve& C,
const Standard_Real U,
gp_Pnt2d& P,
gp_Vec2d& T) {
C.D1(U,P,T);
}
void Geom2dGcc_CurveTool::D2 (const Geom2dAdaptor_Curve& C,
const Standard_Real U,
gp_Pnt2d& P,
gp_Vec2d& T,
gp_Vec2d& N) {
C.D2(U,P,T,N);
}
void Geom2dGcc_CurveTool::D3 (const Geom2dAdaptor_Curve& C ,
const Standard_Real U ,
gp_Pnt2d& P ,
gp_Vec2d& T ,
gp_Vec2d& N ,
gp_Vec2d& dN) {
C.D3(U,P,T,N,dN);
}