1 package org.opentrafficsim.core.network;
2
3 /**
4 * <p>
5 * Copyright (c) 2013-2014 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
6 * BSD-style license. See <a href="http://opentrafficsim.org/node/13">OpenTrafficSim License</a>.
7 * <p>
8 * @version Oct 15, 2014 <br>
9 * @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
10 * @author <a href="http://www.tudelft.nl/pknoppers">Peter Knoppers</a>
11 * @author <a href="http://www.citg.tudelft.nl">Guus Tamminga</a>
12 */
13 public enum LateralDirectionality
14 {
15 /** Direction to the left of our current driving direction. */
16 LEFT,
17 /** Direction to the right of our current driving direction. */
18 RIGHT;
19 }