View Javadoc

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/Extent3d.java,v 1.2 2005/03/19 17:50:02 brian Exp $
11   *
12   */
13  
14  public class Extent3d extends Extent2d implements Extent3dInterface {
15  
16  	/***
17  	 *
18  	 * Constructor
19  	 *
20  	 */
21  	public Extent3d() {
22  	}
23  
24  	/***
25  	 *
26  	 * Determines the depth of the object. 
27  	 *
28  	 * @return the depth of this object
29  	 *
30  	 */
31  	public final float getDepth() {
32  		return depth;
33  	}
34  
35  	/***
36  	 *
37  	 * Set the depth of the object. 
38  	 *
39  	 * @param depth of this object
40  	 *
41  	 */
42  	public final void setDepth( float depth ) {
43  		this.depth = depth;
44  	}
45  
46  
47  	///////////////////
48  
49  	private float depth = 0;
50  };
51  
52  /***
53   *
54   * $Log: Extent3d.java,v $
55   * Revision 1.2  2005/03/19 17:50:02  brian
56   * repackaging
57   *
58   * Revision 1.1  2004/09/03 03:35:00  brian
59   * impls
60   *
61   *
62   */