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

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

static private interpolate_X_6 ( Double x, Double y, Double z, Double w, Double u, Double v, Double xs, Int32 x0, Int32 x1, Int32 iy, 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
x0 System.Int32
x1 System.Int32
iy System.Int32
iz System.Int32
iw System.Int32
iu System.Int32
iv System.Int32
seed System.Int32
noisefunc WorkerNoise6
Результат Double
        internal static Double interpolate_X_6(
            Double x, Double y, Double z, Double w, Double u, Double v, Double xs,
            Int32 x0, Int32 x1, Int32 iy, Int32 iz, Int32 iw, Int32 iu, Int32 iv,
            Int32 seed, WorkerNoise6 noisefunc)
        {
            var v1 = noisefunc(x, y, z, w, u, v, x0, iy, iz, iw, iu, iv, seed);
            var v2 = noisefunc(x, y, z, w, u, v, x1, iy, iz, iw, iu, iv, seed);

            return Lerp(xs, v1, v2);
        }