public Potential(IIteratedLayoutAlgorithm algorithm) { if (algorithm == null) { throw new ArgumentNullException("algorithm"); } this.algorithm = algorithm; }
public GridDirectedForcePotential(IIteratedLayoutAlgorithm algorithm) : base(algorithm) { }
public DirectedForcePotential(IIteratedLayoutAlgorithm algorithm) : base(algorithm) { }
public Potential(IIteratedLayoutAlgorithm algorithm) { if (algorithm==null) throw new ArgumentNullException("algorithm"); this.algorithm = algorithm; }