Ejemplo n.º 1
0
        /// <summary>
        /// Updates the specified plot model and renders to null.
        /// </summary>
        /// <param name="model">The model.</param>
        /// <param name="width">The width of the output surface.</param>
        /// <param name="height">The height the output surface.</param>
        /// <remarks>This method is useful to simulate rendering in the unit tests.</remarks>
        public static void UpdateAndRenderToNull(this IPlotModel model, double width, double height)
        {
            var rc = new NullRenderContext();

            model.Update(true);
            model.Render(rc, width, height);
        }
Ejemplo n.º 2
0
 /// <summary>
 /// Updates the specified plot model and renders to null.
 /// </summary>
 /// <param name="model">The model.</param>
 /// <param name="width">The width of the output surface.</param>
 /// <param name="height">The height the output surface.</param>
 /// <remarks>This method is useful to simulate rendering in the unit tests.</remarks>
 public static void UpdateAndRenderToNull(this IPlotModel model, double width, double height)
 {
     var rc = new NullRenderContext();
     model.Update(true);
     model.Render(rc, width, height);
 }