src/Tools/GraphBrowser/graphbrowser/Box.java
author wenzelm
Fri, 16 Jul 2021 12:55:02 +0200
changeset 74015 12b1f4649ab1
parent 74011 src/Tools/GraphBrowser/GraphBrowser/Box.java@1d366486a812
permissions -rw-r--r--
clarified names;

/***************************************************************************
  Title:      graphbrowser/Box.java
  Author:     Gerwin Klein, TU Muenchen

  A box with width and height. Used instead of java.awt.Dimension for 
  batch mode.

***************************************************************************/

package isabelle.graphbrowser;

public class Box {
  public int width;
  public int height;

  public Box(int w, int h) {
    this.width = w;
    this.height = h;
  }
}