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