Isosurface.SimplexNoise.dot C# (CSharp) Method

dot() private static method

private static dot ( int g, float x, float y ) : float
g int
x float
y float
return float
        private static float dot(int[] g, float x, float y)
        {
            return g[0] * x + g[1] * y;
        }

Same methods

SimplexNoise::dot ( int g, float x, float y, float z ) : float
SimplexNoise::dot ( int g, float x, float y, float z, float w ) : float