1 package com.insanityengine.ghia.m3;
2
3 /***
4 *
5 * <P>
6 * </P>
7 *
8 * @author BrianHammond
9 *
10 * $Header: /usr/local/cvsroot/ghia/src/java/com/insanityengine/ghia/m3/Extent3dInterface.java,v 1.4 2005/03/27 00:09:45 brian Exp $
11 *
12 */
13
14 public interface Extent3dInterface extends Extent2dInterface {
15
16 /***
17 *
18 * Determines the depth of the object.
19 *
20 * @return the depth of this object
21 *
22 */
23 public float getDepth();
24
25 /***
26 *
27 * Set the depth of the object.
28 *
29 * @param depth of this object
30 *
31 */
32 public void setDepth( float depth);
33
34
35 };
36
37 /***
38 *
39 * $Log: Extent3dInterface.java,v $
40 * Revision 1.4 2005/03/27 00:09:45 brian
41 * remove goofy link
42 *
43 * Revision 1.3 2005/03/19 17:50:02 brian
44 * repackaging
45 *
46 * Revision 1.2 2004/09/03 03:25:39 brian
47 * get/set...
48 *
49 * Revision 1.1 2004/09/03 02:25:07 brian
50 * sized things have an extent...
51 *
52 */