Revision 08eabc44
Added by Leszek Koltunski over 9 years ago
| src/main/java/org/distorted/examples/interpolator/InterpolatorSurfaceView.java | ||
|---|---|---|
| 28 | 28 |
import android.graphics.Paint.Style; |
| 29 | 29 |
import android.graphics.Paint; |
| 30 | 30 |
|
| 31 |
import org.distorted.library.Interpolator1D; |
|
| 32 |
import org.distorted.library.Interpolator2D; |
|
| 33 |
import org.distorted.library.Interpolator3D; |
|
| 34 |
import org.distorted.library.Float1D; |
|
| 35 |
import org.distorted.library.Float2D; |
|
| 36 |
import org.distorted.library.Float3D; |
|
| 31 |
import org.distorted.library.type.Interpolator1D;
|
|
| 32 |
import org.distorted.library.type.Interpolator2D;
|
|
| 33 |
import org.distorted.library.type.Interpolator3D;
|
|
| 34 |
import org.distorted.library.type.Float1D;
|
|
| 35 |
import org.distorted.library.type.Float2D;
|
|
| 36 |
import org.distorted.library.type.Float3D;
|
|
| 37 | 37 |
|
| 38 | 38 |
/////////////////////////////////////////////////////////////////// |
| 39 | 39 |
|
Also available in: Unified diff
move data types, like FlatND and InterpolatorND, to a separate package.