1 package org.opentrafficsim.core.gtu;
2
3 /**
4 * GTU that can travel in 2D or 3D space.
5 * <p>
6 * Copyright (c) 2013-2017 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
7 * BSD-style license. See <a href="http://opentrafficsim.org/docs/license.html">OpenTrafficSim License</a>.
8 * <p>
9 * $LastChangedDate: 2017-04-28 03:35:59 +0200 (Fri, 28 Apr 2017) $, @version $Revision: 3569 $, by $Author: averbraeck $,
10 * initial version Oct 22, 2014 <br>
11 * @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
12 * @author <a href="http://www.tudelft.nl/pknoppers">Peter Knoppers</a>
13 */
14 public interface SpaceBasedGTU extends GTU
15 {
16 // TODO space based interface for a GTU. Can be 2D, 3D.
17 }