checkpoint
[anneal.git] / src / edu / berkeley / qfat / geom / HasBoundingBox.java
1 package edu.berkeley.qfat.geom;
2 import javax.media.opengl.*;
3
4 /** objects which have a bounding region in 3-space */
5 public interface HasBoundingBox {
6     public float getMaxX();
7     public float getMinX();
8     public float getMaxY();
9     public float getMinY();
10     public float getMaxZ();
11     public float getMinZ();
12 }