package nl.tudelft.simulation.dsol.animation.interpolation;
import java.rmi.RemoteException;
import nl.tudelft.simulation.language.d3.DirectedPoint;
/**
* A InterpolationInterface
* (c) copyright 2002-2005 Delft University of Technology , the
* Netherlands.
* See for project information www.simulation.tudelft.nl
* License of use: Lesser General Public License (LGPL) , no
* warranty.
* @version $Revision: 1.1 $ $Date: 2010/08/10 11:37:25 $
* @author Peter Jacobs
*/
public interface InterpolationInterface
{
/**
* returns the current location
* @param time the current time
* @return DirectedPoint the current location
* @throws RemoteException on network failure
*/
DirectedPoint getLocation(final double time) throws RemoteException;
}