Ejemplo n.º 1
0
 public Potential(IIteratedLayoutAlgorithm algorithm)
 {
     if (algorithm == null)
     {
         throw new ArgumentNullException("algorithm");
     }
     this.algorithm = algorithm;
 }
 public GridDirectedForcePotential(IIteratedLayoutAlgorithm algorithm)
     : base(algorithm)
 {
 }
Ejemplo n.º 3
0
 public DirectedForcePotential(IIteratedLayoutAlgorithm algorithm)
     : base(algorithm)
 {
 }
Ejemplo n.º 4
0
 public Potential(IIteratedLayoutAlgorithm algorithm)
 {
     if (algorithm==null)
         throw new ArgumentNullException("algorithm");
     this.algorithm = algorithm;
 }