// (C) Copyright Jack Culpepper 1997
// This code may not be distributed without permission.
package mandel;

import java.io.*;

public class Boundary implements Serializable {
  public double left;
  public double right;
  public double top;
  public double bottom;

  public Boundary( double left, double top, double right, double bottom ) {
    this.left = left;
    this.right = right;
    this.top = top;
    this.bottom = bottom;
  }

  public String toString() {
    return "left=" + left + " right=" + right + " top=" + top + " bottom=" +
      bottom;
  }
}

