ArcDirection.java

  1. package org.opentrafficsim.xml.bindings.types;

  2. /**
  3.  * Direction of the arc; LEFT or RIGHT.
  4.  * <p>
  5.  * Copyright (c) 2013-2023 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
  6.  * BSD-style license. See <a href="https://opentrafficsim.org/docs/license.html">OpenTrafficSim License</a>.
  7.  * </p>
  8.  * @author <a href="https://github.com/averbraeck" target="_blank">Alexander Verbraeck</a>
  9.  */
  10. public enum ArcDirection
  11. {
  12.     /** Left = counter-clockwise. */
  13.     LEFT,
  14.     /** Right = clockwise. */
  15.     RIGHT;
  16. }