Revision 687 org.gvsig.animation3d/trunk/org.gvsig.animation3d/org.gvsig.animation3d.swing/org.gvsig.animation3d.swing.api/src/main/java/org/gvsig/animation3d/swing/api/Animation3D.java

View differences:

Animation3D.java
5 5
import org.gvsig.tools.persistence.Persistent;
6 6

  
7 7
/**
8
 * This class represents a list of {@link Frame3D} to make a view animation.
9
 * There are two list of {@link Frame3D}, flat 3D frames and spherical 3d
10
 * frames.
8 11
 * 
9 12
 * @author <a href="mailto:lmarques@disid.com">Lluis Marques</a>
10 13
 *
......
18 21
    public String getName();
19 22

  
20 23
    /**
24
     * Sets name of animation
21 25
     * 
22 26
     * @param name
27
     *            Animation name
23 28
     */
24 29
    public void setName(String name);
25 30

  
26 31
    /**
27
     * 
28
     * @return List of spherical animation frames.
32
     * @return Returns spherical animation frames.
29 33
     */
30 34
    public List<Frame3D> getSphericalFrames();
31
    
35

  
32 36
    /**
33
     * 
34
     * @return List of flat animation frames
37
     * @return Returns flat animation frames
35 38
     */
36 39
    public List<Frame3D> getFlatFrames();
37 40

  
38 41
    /**
42
     * Sets the spherical frame list to this animation
39 43
     * 
40 44
     * @param frames
45
     *            A list with frames
41 46
     */
42 47
    public void setSphericalFrames(List<Frame3D> frames);
43
    
48

  
44 49
    /**
50
     * Sets the flat frame list to this animation
45 51
     * 
46 52
     * @param frames
53
     *            A list with frames
47 54
     */
48 55
    public void setFlatFrames(List<Frame3D> frames);
49 56

  

Also available in: Unified diff