Package org.opentrafficsim.core.math
Class Direction3D
- java.lang.Object
-
- org.opentrafficsim.core.math.Direction3D
-
- All Implemented Interfaces:
java.io.Serializable
public class Direction3D extends java.lang.Object implements java.io.Serializable
3D-rotation, RPY coded (longitudinal roll along the x-axis, lateral pitch along the y-axis and vertical yaw along the z-axis), also called Tait–Bryan angles or Cardan angles. Angles are absolute and relate to the absolute XYZ-frame of the world.Copyright (c) 2013-2020 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
$LastChangedDate: 2015-07-24 02:58:59 +0200 (Fri, 24 Jul 2015) $, @version $Revision: 1147 $, by $Author: averbraeck $, initial version Dec 10, 2015
BSD-style license. See OpenTrafficSim License.- Author:
- Alexander Verbraeck, Peter Knoppers
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Direction3D(double roll, double pitch, double yaw, DirectionUnit unit)
Direction3D(Direction roll, Direction pitch, Direction yaw)
Direction3D(DirectionVector rotation)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Direction
getPitch()
Direction
getRoll()
Direction
getYaw()
java.lang.String
toString()
-
-
-
Constructor Detail
-
Direction3D
public Direction3D(DirectionVector rotation) throws ValueRuntimeException
- Parameters:
rotation
- DirectionVector; the angles in 3D (RPY coded)- Throws:
ValueRuntimeException
- in case the vector does not have exactly three elements
-
Direction3D
public Direction3D(Direction roll, Direction pitch, Direction yaw) throws ValueRuntimeException
- Parameters:
roll
- Direction; (phi) the rotation around the x-axispitch
- Direction; (theta) the rotation around the y-axisyaw
- Direction; (psi) the rotation around the z-axis- Throws:
ValueRuntimeException
- in case the units are incorrect
-
Direction3D
public Direction3D(double roll, double pitch, double yaw, DirectionUnit unit) throws ValueRuntimeException
- Parameters:
roll
- double; (phi) the rotation around the x-axispitch
- double; (theta) the rotation around the y-axisyaw
- double; (psi) the rotation around the z-axisunit
- DirectionUnit; the unit of the RPY parameters- Throws:
ValueRuntimeException
- in case the units are incorrect
-
-