2-D velocity related data structure. More...
#include <Velocity.hpp>
Public Attributes | |
LinearVelocity2 | linear |
Linear velocity. | |
AngularVelocity | angular |
Angular velocity. | |
Related Functions | |
(Note that these are not member functions.) | |
constexpr bool | operator== (const Velocity &lhs, const Velocity &rhs) |
Equality operator. | |
constexpr bool | operator!= (const Velocity &lhs, const Velocity &rhs) |
Inequality operator. | |
constexpr Velocity & | operator*= (Velocity &lhs, const Real rhs) |
Multiplication assignment operator. | |
constexpr Velocity & | operator/= (Velocity &lhs, const Real rhs) |
Division assignment operator. | |
constexpr Velocity & | operator+= (Velocity &lhs, const Velocity &rhs) |
Addition assignment operator. | |
constexpr Velocity | operator+ (const Velocity &lhs, const Velocity &rhs) |
Addition operator. | |
constexpr Velocity & | operator-= (Velocity &lhs, const Velocity &rhs) |
Subtraction assignment operator. | |
constexpr Velocity | operator- (const Velocity &lhs, const Velocity &rhs) |
Subtraction operator. | |
constexpr Velocity | operator- (const Velocity &value) |
Negation operator. | |
constexpr Velocity | operator+ (const Velocity &value) |
Positive operator. | |
constexpr Velocity | operator* (const Velocity &lhs, const Real rhs) |
Multiplication operator. | |
constexpr Velocity | operator* (const Real lhs, const Velocity &rhs) |
Multiplication operator. | |
constexpr Velocity | operator/ (const Velocity &lhs, const Real rhs) |
Division operator. | |
Velocity | Cap (Velocity velocity, Time h, const MovementConf &conf) noexcept |
Caps velocity. More... | |
template<> | |
constexpr bool | IsValid (const d2::Velocity &value) noexcept |
Determines if the given value is valid. | |
2-D velocity related data structure.
|
related |
Caps velocity.
Enforces maximums on the given velocity.
velocity | Velocity to cap. Behavior is undefined if this value is invalid. |
h | Time elapsed to get velocity for. Behavior is undefined if this value is invalid. |
conf | Movement configuration. This defines caps on linear and angular speeds. |