Statistics
| Revision:

svn-gvsig-desktop / trunk / libraries / libAnimation / src / com / iver / cit / gvsig / animation / keyframe / interpolator / IInterpolatorTimeFuntion.java @ 18655

History | View | Annotate | Download (490 Bytes)

1
package com.iver.cit.gvsig.animation.keyframe.interpolator;
2

    
3

    
4
public interface IInterpolatorTimeFuntion {
5

    
6
        // Identification of the class
7
        public void setName(String name);
8

    
9
        public void setDescription(String name);
10

    
11
        public String getName();
12

    
13
        public String getDescription();
14

    
15
        public String getClassName();
16

    
17
        // Interpolation funcion
18
        public double interpolate(double T);
19

    
20
        public double[] interpolate(double T[]);
21
        
22
        public IInterpolatorTimeFuntion create();
23

    
24
}