Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/main/java/de/intevation/gnv/math/Interpolator.java @ 657:af3f56758f59
merged gnv-artifacts/0.5
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:13:53 +0200 |
parents | aec85d00d82c |
children | 6cff63d0c434 |
comparison
equal
deleted
inserted
replaced
590:5f5f273c8566 | 657:af3f56758f59 |
---|---|
1 package de.intevation.gnv.math; | |
2 | |
3 import com.vividsolutions.jts.geom.Coordinate; | |
4 | |
5 /** | |
6 * @author Sascha L. Teichmann | |
7 */ | |
8 public interface Interpolator | |
9 { | |
10 void interpolate(double t, Coordinate v); | |
11 } | |
12 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8: |