Example #1
0
 /// <summary>
 /// Constructor.
 /// </summary>
 /// <param name="b">The Bitmap where the plot is to be rendered.</param>
 public PlotSurface2D(System.Drawing.Bitmap b)
 {
     b_  = b;
     ps_ = new xuzhenzhen.com.chart.PlotSurface2D();
 }
 /// <summary>
 /// Constructor.
 /// </summary>
 /// <param name="b">The Bitmap where the plot is to be rendered.</param>
 public PlotSurface2D( System.Drawing.Bitmap b )
 {
     b_ = b;
     ps_ = new xuzhenzhen.com.chart.PlotSurface2D();
 }
Example #3
0
 /// <summary>
 /// Constructor.
 /// </summary>
 /// <param name="width">width of the bitmap.</param>
 /// <param name="height">height of the bitmap.</param>
 public PlotSurface2D(int width, int height)
 {
     b_  = new System.Drawing.Bitmap(width, height);
     ps_ = new xuzhenzhen.com.chart.PlotSurface2D();
 }
 /// <summary>
 /// Constructor.
 /// </summary>
 /// <param name="width">width of the bitmap.</param>
 /// <param name="height">height of the bitmap.</param>
 public PlotSurface2D( int width, int height )
 {
     b_ = new System.Drawing.Bitmap( width, height );
     ps_ = new xuzhenzhen.com.chart.PlotSurface2D();
 }