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