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

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

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

            return Lerp(zs, v1, v2);
        }