package org.djutils.draw;
/**
* Oriented3d is an interface to indicate an object has a direction in three dimensions.
*
* Copyright (c) 2020-2021 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
* @param the Oriented type
*/
public interface Oriented3d> extends Oriented
{
/**
* Return the rotation around the x-axis in radians.
* @return double; the rotation around the x-axis in radians
*/
double getDirX();
/**
* Return the rotation around the y-axis in radians.
* @return double; the rotation around the y-axis in radians
*/
double getDirY();
}