Exemple #1
0
        public Image EvaluateToImage(string exprText, int width = 0, int height = 0)
        {
            CacheMisses++;

            var img = KernelLink.EvaluateToImage(exprText, width, height);

            return(img);
        }
        public Image EvaluateToImage(Expr exprObject, int width = 0, int height = 0)
        {
            CacheMisses++;

            Stopwatch.Start();

            var result = KernelLink.EvaluateToImage(exprObject, width, height);

            Stopwatch.Stop();

            return(result);
        }
Exemple #3
0
        public Image EvaluateToImage(Expr exprObject, int width = 0, int height = 0)
        {
            CacheMisses++;

            return(KernelLink.EvaluateToImage(exprObject, width, height));
        }