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
|
// 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 _Law_S_HeaderFile
#define _Law_S_HeaderFile
#include <Standard.hxx>
#include <Standard_DefineHandle.hxx>
#include <Handle_Law_S.hxx>
#include <Law_BSpFunc.hxx>
#include <Standard_Real.hxx>
//! Describes an "S" evolution law.
class Law_S : public Law_BSpFunc
{
public:
//! Constructs an empty "S" evolution law.
Standard_EXPORT Law_S();
//! Defines this S evolution law by assigning both:
//! - the bounds Pdeb and Pfin of the parameter, and
//! - the values Valdeb and Valfin of the function at these
//! two parametric bounds.
//! The function is assumed to have the first derivatives
//! equal to 0 at the two parameter points Pdeb and Pfin.
Standard_EXPORT void Set (const Standard_Real Pdeb, const Standard_Real Valdeb, const Standard_Real Pfin, const Standard_Real Valfin) ;
//! Defines this S evolution law by assigning
//! - the bounds Pdeb and Pfin of the parameter,
//! - the values Valdeb and Valfin of the function at these
//! two parametric bounds, and
//! - the values Ddeb and Dfin of the first derivative of the
//! function at these two parametric bounds.
Standard_EXPORT void Set (const Standard_Real Pdeb, const Standard_Real Valdeb, const Standard_Real Ddeb, const Standard_Real Pfin, const Standard_Real Valfin, const Standard_Real Dfin) ;
DEFINE_STANDARD_RTTI(Law_S)
protected:
private:
};
#endif // _Law_S_HeaderFile
|