1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/src/Extrema/Extrema_CurveTool.lxx
nbv 32ca7a5106 0023706: Cannot project point on curve
1.   Approximation of derivative (by Taylor-series and by three points).
2.   Some methods (Degree(), GetType(), D0(), D3(), DN()) are added.
3.   Getting of subInterval's boundaries.
4.   Algorithm for checking if 1st derivative is equal to zero is amended.
5.   Cases are controlled when extrema or Project point do not exist.
6.   GetNormal() function for gp_Vec2d was added.
7.   Computing of Value, D0, D1, D2 and D3 for offset curves was changed.
8.   Limitation of tolerance for derivative computing was added.
9.   Methods for computing trihedron in singularity point are added.
10. Test tests/bugs/moddata_3/bug23706 is added.
11. Restriction on the LastParameter for visualization of 3-D curves. Calling PlotCurve(...) function for last interval.
12. LProp package is modified for tangent computing in singularity point (LProp_CLProps, LProp_SLProps).
13. Added test cases for issue.
Deleting bad test cases for this fix
2013-06-13 15:12:06 +04:00

306 lines
8.7 KiB
Plaintext
Executable File

// Created on: 1995-07-18
// Created by: Modelistation
// Copyright (c) 1995-1999 Matra Datavision
// Copyright (c) 1999-2012 OPEN CASCADE SAS
//
// The content of this file is subject to the Open CASCADE Technology Public
// License Version 6.5 (the "License"). You may not use the content of this file
// except in compliance with the License. Please obtain a copy of the License
// at http://www.opencascade.org and read it completely before using this file.
//
// The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
// main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
//
// The Original Code and all software distributed under the License is
// distributed on an "AS IS" basis, without warranty of any kind, and the
// Initial Developer hereby disclaims all such warranties, including without
// limitation, any warranties of merchantability, fitness for a particular
// purpose or non-infringement. Please see the License for the specific terms
// and conditions governing the rights and limitations under the License.
#include <gp_Vec.hxx>
#include <gp_Pnt.hxx>
#include <gp_Parab.hxx>
#include <gp_Lin.hxx>
#include <gp_Elips.hxx>
#include <gp_Hypr.hxx>
#include <gp_Circ.hxx>
#include <Geom_BezierCurve.hxx>
#include <Geom_BSplineCurve.hxx>
#include <Adaptor3d_Curve.hxx>
//=======================================================================
//function : FirstParameter
//purpose :
//=======================================================================
inline Standard_Real Extrema_CurveTool::FirstParameter(const Adaptor3d_Curve& C)
{
return C.FirstParameter();
}
//=======================================================================
//function : LastParameter
//purpose :
//=======================================================================
inline Standard_Real Extrema_CurveTool::LastParameter(const Adaptor3d_Curve& C)
{
return C.LastParameter();
}
//=======================================================================
//function : Value
//purpose :
//=======================================================================
inline gp_Pnt Extrema_CurveTool::Value(const Adaptor3d_Curve& C,
const Standard_Real U)
{
return C.Value(U);
}
//=======================================================================
//function : D0
//purpose :
//=======================================================================
inline void Extrema_CurveTool::D0(const Adaptor3d_Curve& C,
const Standard_Real U,
gp_Pnt& P)
{
C.D0(U, P);
}
//=======================================================================
//function : D1
//purpose :
//=======================================================================
inline void Extrema_CurveTool::D1(const Adaptor3d_Curve& C,
const Standard_Real U,
gp_Pnt& P,
gp_Vec& V)
{
C.D1(U, P, V);
}
//=======================================================================
//function : D2
//purpose :
//=======================================================================
inline void Extrema_CurveTool::D2(const Adaptor3d_Curve& C,
const Standard_Real U,
gp_Pnt& P,
gp_Vec& V1,
gp_Vec& V2)
{
C.D2(U, P, V1, V2);
}
//=======================================================================
//function : D3
//purpose :
//=======================================================================
inline void Extrema_CurveTool::D3(const Adaptor3d_Curve& C,
const Standard_Real U,
gp_Pnt& P,
gp_Vec& V1,
gp_Vec& V2,
gp_Vec& V3)
{
C.D3(U, P, V1, V2, V3);
}
//=======================================================================
//function : DN
//purpose :
//=======================================================================
inline gp_Vec Extrema_CurveTool::DN(const Adaptor3d_Curve& C,
const Standard_Real U,
const Standard_Integer N)
{
return C.DN(U, N);
}
//=======================================================================
//function : Continuity
//purpose :
//=======================================================================
inline GeomAbs_Shape Extrema_CurveTool::Continuity(const Adaptor3d_Curve& C)
{
return C.Continuity();
}
//=======================================================================
//function : NbIntervals
//purpose :
//=======================================================================
inline Standard_Integer Extrema_CurveTool::NbIntervals(Adaptor3d_Curve& C,
const GeomAbs_Shape S)
{
return C.NbIntervals(S);
}
//=======================================================================
//function : Intervals
//purpose :
//=======================================================================
inline void Extrema_CurveTool::Intervals(Adaptor3d_Curve& C,
TColStd_Array1OfReal& T,
const GeomAbs_Shape S)
{
C.Intervals(T, S);
}
//=======================================================================
//function : Period
//purpose :
//=======================================================================
inline Standard_Real Extrema_CurveTool::Period(const Adaptor3d_Curve& C)
{
return C.Period();
}
//=======================================================================
//function : GetType
//purpose :
//=======================================================================
inline GeomAbs_CurveType Extrema_CurveTool::GetType(const Adaptor3d_Curve& C)
{
return C.GetType();
}
//=======================================================================
//function : Line
//purpose :
//=======================================================================
inline gp_Lin Extrema_CurveTool::Line(const Adaptor3d_Curve& C)
{
return C.Line();
}
//=======================================================================
//function : Circle
//purpose :
//=======================================================================
inline gp_Circ Extrema_CurveTool::Circle(const Adaptor3d_Curve& C)
{
return C.Circle();
}
//=======================================================================
//function : Ellipse
//purpose :
//=======================================================================
inline gp_Elips Extrema_CurveTool::Ellipse(const Adaptor3d_Curve& C)
{
return C.Ellipse();
}
//=======================================================================
//function : Hyperbola
//purpose :
//=======================================================================
inline gp_Hypr Extrema_CurveTool::Hyperbola(const Adaptor3d_Curve& C)
{
return C.Hyperbola();
}
//=======================================================================
//function : Parabola
//purpose :
//=======================================================================
inline gp_Parab Extrema_CurveTool::Parabola(const Adaptor3d_Curve& C)
{
return C.Parabola();
}
//=======================================================================
//function : NbPoles
//purpose :
//=======================================================================
inline Standard_Integer Extrema_CurveTool::NbPoles(const Adaptor3d_Curve& C)
{
return C.NbPoles();
}
//=======================================================================
//function : Degree
//purpose :
//=======================================================================
inline Standard_Integer Extrema_CurveTool::Degree(const Adaptor3d_Curve& C)
{
return C.Degree();
}
//=======================================================================
//function : IsRational
//purpose :
//=======================================================================
inline Standard_Boolean Extrema_CurveTool::IsRational(const Adaptor3d_Curve& C)
{
return C.IsRational();
}
//=======================================================================
//function : NbKnots
//purpose :
//=======================================================================
inline Standard_Integer Extrema_CurveTool::NbKnots(const Adaptor3d_Curve& C)
{
return C.NbKnots();
}
//=======================================================================
//function : Bezier
//purpose :
//=======================================================================
inline Handle(Geom_BezierCurve) Extrema_CurveTool::Bezier(const Adaptor3d_Curve& C)
{
return C.Bezier();
}
//=======================================================================
//function : BSpline
//purpose :
//=======================================================================
inline Handle(Geom_BSplineCurve) Extrema_CurveTool::BSpline(const Adaptor3d_Curve& C)
{
return C.BSpline();
}
//=======================================================================
//function : Resolution
//purpose :
//=======================================================================
inline Standard_Real Extrema_CurveTool::Resolution(const Adaptor3d_Curve& C,
const Standard_Real R3d)
{
return C.Resolution(R3d);
}