lib/browser/GraphBrowser/Box.java
author wenzelm
Mon, 25 Sep 2017 20:43:21 +0200
changeset 66691 a8703e8ee1d3
parent 33686 8e33ca8832b1
permissions -rw-r--r--
basic support for x86_64-cygwin;

/***************************************************************************
  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 GraphBrowser;

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

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