AccidentalNoise.Noise.interpolate_XY_4 C# (CSharp) Метод

interpolate_XY_4() статический приватный Метод

static private interpolate_XY_4 ( Double x, Double y, Double z, Double w, Double xs, Double ys, Int32 x0, Int32 x1, Int32 y0, Int32 y1, Int32 iz, Int32 iw, Int32 seed, WorkerNoise4 noisefunc ) : Double
x Double
y Double
z Double
w Double
xs Double
ys Double
x0 System.Int32
x1 System.Int32
y0 System.Int32
y1 System.Int32
iz System.Int32
iw System.Int32
seed System.Int32
noisefunc WorkerNoise4
Результат Double
        internal static Double interpolate_XY_4(
            Double x, Double y, Double z, Double w, Double xs, Double ys,
            Int32 x0, Int32 x1, Int32 y0, Int32 y1, Int32 iz, Int32 iw,
            Int32 seed, WorkerNoise4 noisefunc)
        {
            var v1 = interpolate_X_4(x, y, z, w, xs, x0, x1, y0, iz, iw, seed, noisefunc);
            var v2 = interpolate_X_4(x, y, z, w, xs, x0, x1, y1, iz, iw, seed, noisefunc);

            return Lerp(ys, v1, v2);
        }