package org.djutils.draw; /** * Directed3d.java. *

* Copyright (c) 2020-2020 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
* BSD-style license. See DJUTILS License. *

* @author Alexander Verbraeck * @author Peter Knoppers */ public interface Directed3d extends Directed2d { /** * Return the direction as a rotation around the x-axis in radians. * @return double; the rotation around the x-axis in radians */ double getDirX(); /** * Return the direction as a rotation around the y-axis in radians. * @return double; the rotation around the y-axis in radians */ double getDirY(); }