IGLib 1.4
The IGLib base library for development of numerical, technical and business applications.
|
2D function that returns the second parameter. Used as the second componnet of parametric definition of surfce that is defined by a single function of 2 variables. More...
Public Member Functions | |
Func2dY () | |
override double | Value (double x, double y) |
Calculates and returns value of the current 2D scalar function. | |
override void | Gradient (double x, double y, out double gradx, out double grady) |
Calculates gradient of the current 2D scalar function and returns its components through the specified output variables. |
2D function that returns the second parameter. Used as the second componnet of parametric definition of surfce that is defined by a single function of 2 variables.
IG::Gr3d::VtkPlotBase::Func2dY::Func2dY | ( | ) | [inline] |
override double IG::Gr3d::VtkPlotBase::Func2dY::Value | ( | double | x, |
double | y | ||
) | [inline] |
Calculates and returns value of the current 2D scalar function.
x | First parameter. |
y | Second parameter. |
z | Third parameter. |
Implements IG::Num::IFunc2d.
override void IG::Gr3d::VtkPlotBase::Func2dY::Gradient | ( | double | x, |
double | y, | ||
out double | gradx, | ||
out double | grady | ||
) | [inline] |
Calculates gradient of the current 2D scalar function and returns its components through the specified output variables.
x | First parameter. |
y | Second parameter. |
gradx | First component of the returned gradient. |
grady | Second component of the returned gradient. |
Implements IG::Num::IFunc2d.