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

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

static private interpolate_XY_6 ( Double x, Double y, Double z, Double w, Double u, Double v, Double xs, Double ys, Int32 x0, Int32 x1, Int32 y0, Int32 y1, Int32 iz, Int32 iw, Int32 iu, Int32 iv, Int32 seed, WorkerNoise6 noisefunc ) : Double
x Double
y Double
z Double
w Double
u Double
v Double
xs Double
ys Double
x0 System.Int32
x1 System.Int32
y0 System.Int32
y1 System.Int32
iz System.Int32
iw System.Int32
iu System.Int32
iv System.Int32
seed System.Int32
noisefunc WorkerNoise6
Результат Double
        internal static Double interpolate_XY_6(
            Double x, Double y, Double z, Double w, Double u, Double v, 
            Double xs, Double ys,
            Int32 x0, Int32 x1, Int32 y0, Int32 y1, Int32 iz, Int32 iw, Int32 iu, Int32 iv,
            Int32 seed, WorkerNoise6 noisefunc)
        {
            var v1 = interpolate_X_6(x, y, z, w, u, v, xs, x0, x1, y0, iz, iw, iu, iv, seed, noisefunc);
            var v2 = interpolate_X_6(x, y, z, w, u, v, xs, x0, x1, y1, iz, iw, iu, iv, seed, noisefunc);

            return Lerp(ys, v1, v2);
        }