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 74 75 76 77 78 79 80 81 82 83 84
|
// 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
#include <Standard.hxx>
#include <Standard_DefineAlloc.hxx>
#include <Standard_Macro.hxx>
#include <TColStd_SequenceOfReal.hxx>
#include <LProp_SequenceOfCIType.hxx>
#include <Standard_Real.hxx>
#include <Standard_Boolean.hxx>
#include <Standard_Integer.hxx>
#include <LProp_CIType.hxx>
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:
DEFINE_STANDARD_ALLOC
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;
};
#endif // _LProp_CurAndInf_HeaderFile
|