add RTree classes
[anneal.git] / src / edu / berkeley / qfat / geom / HasBoundingBox.java
1 package edu.berkeley.qfat.geom;
2 import javax.media.opengl.*;
3
4 public interface HasBoundingBox {
5     public float getMaxX();
6     public float getMinX();
7     public float getMaxY();
8     public float getMinY();
9     public float getMaxZ();
10     public float getMinZ();
11 }