Exemple #1
0
 public Graph(View.Scene scene, AbstractOrderingStrategy strategy, bool sort)
 {
     _scene      = scene;
     _strategy   = strategy;
     _sort       = sort;
     _components = new List <AbstractDrawable>();
 }
Exemple #2
0
 public Graph(View.Scene scene, AbstractOrderingStrategy strategy) : this(scene, strategy, true)
 {
 }