Exemplo n.º 1
0
 /// <summary>
 /// Adds a drawable object to the plot surface. If the object is an IPlot,
 /// the PlotSurface2D axes will also be updated.
 /// </summary>
 /// <param name="p">The IDrawable object to add to the plot surface.</param>
 public void Add(IDrawable p)
 {
     ps_.Add(p);
 }
Exemplo n.º 2
0
 public void Add(IDrawable p, int zOrder)
 {
     ps.Add(p, zOrder);
 }