All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.djutils.draw.Oriented3d Maven / Gradle / Ivy

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(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy