- C3d aggiornamento delle librerie ( 117910).
This commit is contained in:
SaraP
2022-08-09 08:56:28 +02:00
parent f29512578a
commit 4be7d59035
191 changed files with 6923 additions and 6366 deletions
+7 -6
View File
@@ -33,14 +33,14 @@ private:
public :
virtual ~MbConstFunction();
public:
void Init ( double v ); ///< \ru Инициализация по значению. \en Initialization by the value.
void Init ( double v ); ///< \ru Инициализация по значению. \en Initialization by the value.
public:
// \ru Общие функции математического объекта \en Common functions of mathematical object
MbeFunctionType IsA() const override; // \ru Тип элемента \en A type of element
MbFunction & Duplicate () const override; // \ru Сделать копию элемента \en Create a copy of the element
MbeFunctionType IsA() const override; // \ru Тип элемента \en A type of element
MbFunction & Duplicate () const override; // \ru Сделать копию элемента \en Create a copy of the element
bool IsSame ( const MbFunction & other, double accuracy = LENGTH_EPSILON ) const override; // \ru Являются ли объекты равными \en Determine whether objects are equal
bool SetEqual ( const MbFunction & ) override; // \ru Сделать равным \en Make equal
void GetProperties( MbProperties & ) override; // \ru Выдать свойства объекта \en Get properties of the object
void GetProperties( MbProperties & ) override; // \ru Выдать свойства объекта \en Get properties of the object
void SetProperties( const MbProperties & ) override; // \ru Записать свойства объекта \en Set properties of the object
double GetTMax () const override; // \ru Вернуть максимальное значение параметра \en Get the maximum value of parameter
@@ -59,7 +59,7 @@ public:
double _ThirdDer ( double t ) const override; // \ru Третья производная по t \en The third derivative with respect to t
// \ru Вычислить значение и производные. \en Calculate value and derivatives of object for given parameter. \~
void Explore( double & t, bool ext,
double & val, double & fir, double * sec, double * thr ) const override;
double & val, double & fir, double * sec, double * thr ) const override;
void Inverse ( MbRegTransform * iReg = nullptr ) override; // \ru Изменить направление \en Change direction
double Step( double t, double sag ) const override;
@@ -84,11 +84,12 @@ public:
MbFunction * BreakFunction( double t, bool beg ) override;
private:
void operator = ( const MbConstFunction & ); // \ru Не реализовано \en Not implemented
void operator = ( const MbConstFunction & ); // \ru Не реализовано \en Not implemented
DECLARE_PERSISTENT_CLASS_NEW_DEL( MbConstFunction )
};
IMPL_PERSISTENT_OPS( MbConstFunction )
#endif // __FUNC_CONST_FUNCTION_H