Function2DInterp Constructor |
Namespace: DHI.ProjectionsAssembly: DHI.Projections (in DHI.Projections.dll) Version: 16.0.0.0 (11.1.1.1111)
Syntax public Function2DInterp(
double x0,
double y0,
double x1,
double y1,
int xCount,
int yCount,
Func<double, double, double> func
)
Public Sub New (
x0 As Double,
y0 As Double,
x1 As Double,
y1 As Double,
xCount As Integer,
yCount As Integer,
func As Func(Of Double, Double, Double)
)
public:
Function2DInterp(
double x0,
double y0,
double x1,
double y1,
int xCount,
int yCount,
Func<double, double, double>^ func
)
new :
x0 : float *
y0 : float *
x1 : float *
y1 : float *
xCount : int *
yCount : int *
func : Func<float, float, float> -> Function2DInterp
Parameters
- x0
- Type: SystemDouble
- y0
- Type: SystemDouble
- x1
- Type: SystemDouble
- y1
- Type: SystemDouble
- xCount
- Type: SystemInt32
- yCount
- Type: SystemInt32
- func
- Type: SystemFuncDouble, Double, Double
See Also