AccidentalNoise.ImplicitCache.Get C# (CSharp) Метод

Get() публичный Метод

public Get ( Double x, Double y ) : Double
x Double
y Double
Результат Double
        public override Double Get(Double x, Double y)
        {
            if (!this.cache2D.IsValid || this.cache2D.X != x || this.cache2D.Y != y)
            {
                this.cache2D.X = x;
                this.cache2D.Y = y;
                this.cache2D.IsValid = true;
                this.cache2D.Value = this.Source.Get(x, y);
            }
            return this.cache2D.Value;
        }

Same methods

ImplicitCache::Get ( Double x, Double y, Double z ) : Double
ImplicitCache::Get ( Double x, Double y, Double z, Double w ) : Double
ImplicitCache::Get ( Double x, Double y, Double z, Double w, Double u, Double v ) : Double