org.djutils.draw.Oriented3d Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of djutils-draw Show documentation
Show all versions of djutils-draw Show documentation
DJUTILS - Delft Java Utilities Drawing and animation primitives
The newest version!
package org.djutils.draw;
/**
* Oriented3d is an interface to indicate an object has a direction in three dimensions.
*
* Copyright (c) 2020-2024 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();
}