lib/browser/GraphBrowser/Box.java
author traytel
Tue, 10 Dec 2019 01:06:39 +0100
changeset 71263 35a92ce0b94e
parent 33686 8e33ca8832b1
permissions -rw-r--r--
an extensive example for lift_bnf across quotients

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