1 package org.djutils.draw; 2 3 /** 4 * Oriented2d is an interface to indicate an object has a direction in two dimensions. 5 * <p> 6 * Copyright (c) 2020-2022 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br> 7 * BSD-style license. See <a href="https://djutils.org/docs/current/djutils/licenses.html">DJUTILS License</a>. 8 * </p> 9 * @author <a href="https://www.tudelft.nl/averbraeck">Alexander Verbraeck</a> 10 * @author <a href="https://www.tudelft.nl/pknoppers">Peter Knoppers</a> 11 * @param <O> the Oriented type 12 */ 13 public interface Oriented2d<O extends Oriented<O>> extends Oriented<O> 14 { 15 // no other methods defined for now 16 }