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/Extent4dInterface.java,v 1.4 2005/03/27 00:09:45 brian Exp $
11 *
12 */
13
14 public interface Extent4dInterface extends Extent3dInterface {
15
16 /***
17 *
18 * Determines the duration of the object.
19 *
20 * @return the duration of this object
21 *
22 */
23 public double getDuration();
24
25 /***
26 *
27 * Set the duration of the object.
28 *
29 * @return duration of this object
30 *
31 */
32 public void setDuration( double duration );
33
34 };
35
36 /***
37 *
38 * $Log: Extent4dInterface.java,v $
39 * Revision 1.4 2005/03/27 00:09:45 brian
40 * remove goofy link
41 *
42 * Revision 1.3 2005/03/19 17:50:02 brian
43 * repackaging
44 *
45 * Revision 1.2 2004/09/03 03:25:39 brian
46 * get/set...
47 *
48 * Revision 1.1 2004/09/03 02:25:07 brian
49 * sized things have an extent...
50 *
51 *
52 */