Package org.opentrafficsim.core.math
Class Angle3D
java.lang.Object
org.opentrafficsim.core.math.Angle3D
- All Implemented Interfaces:
java.io.Serializable
public class Angle3D
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 relative, and can relate to e.g. the inertial frame of a
GTU.
Copyright (c) 2013-2019 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See OpenTrafficSim License.
- Author:
- Alexander Verbraeck, Peter Knoppers
- See Also:
- Serialized Form
-
Constructor Details
-
Angle3D
- Parameters:
rotation
- AngleVector; the angles of the rotation in 3D (RPY coded)- Throws:
ValueRuntimeException
- in case the vector does not have exactly three elements
-
Angle3D
- Parameters:
roll
- Angle; (phi) the rotation around the x-axispitch
- Angle; (theta) the rotation around the y-axisyaw
- Angle; (psi) the rotation around the z-axis- Throws:
ValueRuntimeException
- in case the units are incorrect
-
Angle3D
- 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
- AngleUnit; the unit of the RPY parameters- Throws:
ValueRuntimeException
- in case the units are incorrect
-
-
Method Details