// 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 _AdvApprox_PrefAndRec_HeaderFile #define _AdvApprox_PrefAndRec_HeaderFile #ifndef _Standard_HeaderFile #include #endif #ifndef _Standard_Macro_HeaderFile #include #endif #ifndef _TColStd_Array1OfReal_HeaderFile #include #endif #ifndef _Standard_Real_HeaderFile #include #endif #ifndef _AdvApprox_Cutting_HeaderFile #include #endif #ifndef _Standard_Boolean_HeaderFile #include #endif class Standard_DomainError; class TColStd_Array1OfReal; //! inherits class Cutting; contains a list of preferential points (pi)i
//! and a list of Recommended points used in cutting management.
class AdvApprox_PrefAndRec : public AdvApprox_Cutting { 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 AdvApprox_PrefAndRec(const TColStd_Array1OfReal& RecomendedCut,const TColStd_Array1OfReal& PrefferedCut,const Standard_Real Weight = 5); //! cuting value is
//! - the recommended point nerest of (a+b)/2
//! if pi is in ]a,b[ or else
//! - the preferential point nearest of (a+b) / 2
//! if pi is in ](r*a+b)/(r+1) , (a+r*b)/(r+1)[ where r = Weight
//! - or (a+b)/2 else.
Standard_EXPORT virtual Standard_Boolean Value(const Standard_Real a,const Standard_Real b,Standard_Real& cuttingvalue) const; protected: private: TColStd_Array1OfReal myRecCutting; TColStd_Array1OfReal myPrefCutting; Standard_Real myWeight; }; // other Inline functions and methods (like "C++: function call" methods) #endif