lib/browser/GraphBrowser/Box.java
author wenzelm
Fri, 03 May 2019 11:50:32 +0200
changeset 70239 9c60fcfdf495
parent 33686 8e33ca8832b1
permissions -rw-r--r--
updated to jdk-11.0.3+7;

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