Statistics
| Revision:

svn-gvsig-desktop / import / ext3D / branches / ext3D_v1.1 / libAnimation / src / com / iver / cit / gvsig / animation / keyframe / interpolator / IInterpolatorFuntion.java @ 15459

History | View | Annotate | Download (506 Bytes)

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

    
3
import java.util.List;
4

    
5
public interface IInterpolatorFuntion {
6

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

    
10
        public void setDescription(String name);
11

    
12
        public String getName();
13

    
14
        public String getDescription();
15

    
16
        public String getClassName();
17

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

    
21
        public double[] interpolate(double T[]);
22
        
23
        public IInterpolatorFuntion create();
24

    
25
}