// This file is generated by WOK (CPPExt). // Please do not edit this file; modify original file instead. // The copyright and license terms as defined for the original file apply to // this header file considered to be the "object code" form of the original source. #ifndef _LProp_CurAndInf_HeaderFile #define _LProp_CurAndInf_HeaderFile #ifndef _Standard_HeaderFile #include #endif #ifndef _Standard_Macro_HeaderFile #include #endif #ifndef _TColStd_SequenceOfReal_HeaderFile #include #endif #ifndef _LProp_SequenceOfCIType_HeaderFile #include #endif #ifndef _Standard_Real_HeaderFile #include #endif #ifndef _Standard_Boolean_HeaderFile #include #endif #ifndef _Standard_Integer_HeaderFile #include #endif #ifndef _LProp_CIType_HeaderFile #include #endif class Standard_OutOfRange; //! Stores the parameters of a curve 2d or 3d corresponding
//! to the curvature's extremas and the Inflection's Points.
class LProp_CurAndInf { public: void* operator new(size_t,void* anAddress) { return anAddress; } void* operator new(size_t size) { return Standard::Allocate(size); } void operator delete(void *anAddress) { if (anAddress) Standard::Free((Standard_Address&)anAddress); } Standard_EXPORT LProp_CurAndInf(); Standard_EXPORT void AddInflection(const Standard_Real Param) ; Standard_EXPORT void AddExtCur(const Standard_Real Param,const Standard_Boolean IsMin) ; Standard_EXPORT void Clear() ; Standard_EXPORT Standard_Boolean IsEmpty() const; //! Returns the number of points.
//! The Points are stored to increasing parameter.
Standard_EXPORT Standard_Integer NbPoints() const; //! Returns the parameter of the Nth point.
//! raises if N not in the range [1,NbPoints()]
Standard_EXPORT Standard_Real Parameter(const Standard_Integer N) const; //! Returns
//! - MinCur if the Nth parameter corresponds to
//! a minimum of the radius of curvature.
//! - MaxCur if the Nth parameter corresponds to
//! a maximum of the radius of curvature.
//! - Inflection if the parameter corresponds to
//! a point of inflection.
//! raises if N not in the range [1,NbPoints()]
Standard_EXPORT LProp_CIType Type(const Standard_Integer N) const; protected: private: TColStd_SequenceOfReal theParams; LProp_SequenceOfCIType theTypes; }; // other Inline functions and methods (like "C++: function call" methods) #endif