1 package org.opentrafficsim.animation;
2
3 /**
4 * Location of the text in the explanation.
5 * <p>
6 * Copyright (c) 2013-2026 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
7 * BSD-style license. See <a href="https://opentrafficsim.org/docs/license.html">OpenTrafficSim License</a>.
8 * </p>
9 * @author Alexander Verbraeck
10 * @author Peter Knoppers
11 * @author Wouter Schakel
12 */
13 public enum TextAlignment
14 {
15 /** left. */
16 LEFT,
17
18 /** center. */
19 CENTER,
20
21 /** right. */
22 RIGHT,
23
24 }