// Created on: 1994-02-24 // Created by: Laurent BOURESCHE // Copyright (c) 1994-1999 Matra Datavision // Copyright (c) 1999-2014 OPEN CASCADE SAS // // This file is part of Open CASCADE Technology software library. // // This library is free software; you can redistribute it and/or modify it under // the terms of the GNU Lesser General Public License version 2.1 as published // by the Free Software Foundation, with special exception defined in the file // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT // distribution for complete text of the license and disclaimer of any warranty. // // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. #ifndef _BRepLProp_CurveTool_HeaderFile #define _BRepLProp_CurveTool_HeaderFile #include #include #include class BRepAdaptor_Curve; class gp_Pnt; class gp_Vec; class BRepLProp_CurveTool { public: DEFINE_STANDARD_ALLOC //! Computes the point

of parameter on the curve . Standard_EXPORT static void Value (const BRepAdaptor_Curve& C, const Standard_Real U, gp_Pnt& P); //! Computes the point

and first derivative of //! parameter on the curve . Standard_EXPORT static void D1 (const BRepAdaptor_Curve& C, const Standard_Real U, gp_Pnt& P, gp_Vec& V1); //! Computes the point

, the first derivative and second //! derivative of parameter on the curve . Standard_EXPORT static void D2 (const BRepAdaptor_Curve& C, const Standard_Real U, gp_Pnt& P, gp_Vec& V1, gp_Vec& V2); //! Computes the point

, the first derivative , the //! second derivative and third derivative of //! parameter on the curve . Standard_EXPORT static void D3 (const BRepAdaptor_Curve& C, const Standard_Real U, gp_Pnt& P, gp_Vec& V1, gp_Vec& V2, gp_Vec& V3); //! returns the order of continuity of the curve . //! returns 1 : first derivative only is computable //! returns 2 : first and second derivative only are computable. //! returns 3 : first, second and third are computable. Standard_EXPORT static Standard_Integer Continuity (const BRepAdaptor_Curve& C); //! returns the first parameter bound of the curve. Standard_EXPORT static Standard_Real FirstParameter (const BRepAdaptor_Curve& C); //! returns the last parameter bound of the curve. //! FirstParameter must be less than LastParamenter. Standard_EXPORT static Standard_Real LastParameter (const BRepAdaptor_Curve& C); protected: private: }; #endif // _BRepLProp_CurveTool_HeaderFile