pub struct Rotation {
pub cos: Scalar,
pub sin: Scalar,
}
Expand description
The global counterclockwise physics rotation of a rigid body or a collider in radians.
The rotation angle is wrapped to be within the (-pi, pi]
range.
§Relation to Transform
and GlobalTransform
Rotation
is used for physics internally and kept in sync with Transform
by the SyncPlugin
. It rarely needs to be used directly in your own code, as Transform
can still
be used for almost everything. Using Rotation
should only be required for managing rotations
in systems running in the SubstepSchedule
, but if you prefer, you can also use Rotation
for everything.
The reasons why the engine uses a separate Rotation
component can be found
here.
§Example
use avian2d::prelude::*;
use bevy::prelude::*;
fn setup(mut commands: Commands) {
// Spawn a dynamic rigid body rotated by 90 degrees
commands.spawn((RigidBody::Dynamic, Rotation::degrees(90.0)));
}
Fields§
§cos: Scalar
The cosine of the rotation angle in radians.
This is the real part of the unit complex number representing the rotation.
sin: Scalar
The sine of the rotation angle in radians.
This is the imaginary part of the unit complex number representing the rotation.
Implementations§
Source§impl Rotation
impl Rotation
Sourcepub fn radians(radians: Scalar) -> Self
pub fn radians(radians: Scalar) -> Self
Creates a Rotation
from a counterclockwise angle in radians.
Sourcepub fn degrees(degrees: Scalar) -> Self
pub fn degrees(degrees: Scalar) -> Self
Creates a Rotation
from a counterclockwise angle in degrees.
Sourcepub fn from_radians(radians: Scalar) -> Self
👎Deprecated: renamed to just radians
to match Bevy
pub fn from_radians(radians: Scalar) -> Self
radians
to match BevyCreates a Rotation
from radians.
Sourcepub fn from_degrees(degrees: Scalar) -> Self
👎Deprecated: renamed to just degrees
to match Bevy
pub fn from_degrees(degrees: Scalar) -> Self
degrees
to match BevyCreates a Rotation
from degrees.
Sourcepub fn from_sin_cos(sin: Scalar, cos: Scalar) -> Self
pub fn from_sin_cos(sin: Scalar, cos: Scalar) -> Self
Sourcepub fn as_radians(self) -> Scalar
pub fn as_radians(self) -> Scalar
Returns the rotation in radians in the (-pi, pi]
range.
Sourcepub fn as_degrees(self) -> Scalar
pub fn as_degrees(self) -> Scalar
Returns the rotation in degrees in the (-180, 180]
range.
Sourcepub const fn sin_cos(self) -> (Scalar, Scalar)
pub const fn sin_cos(self) -> (Scalar, Scalar)
Returns the sine and cosine of the rotation angle in radians.
Sourcepub fn rotate(&self, vec: Vector) -> Vector
👎Deprecated: use the Mul
impl instead, like rot * vec
pub fn rotate(&self, vec: Vector) -> Vector
Mul
impl instead, like rot * vec
Rotates the given vector by self
.
Sourcepub fn length(self) -> Scalar
pub fn length(self) -> Scalar
Computes the length or norm of the complex number used to represent the rotation.
The length is typically expected to be 1.0
. Unexpectedly denormalized rotations
can be a result of incorrect construction or floating point error caused by
successive operations.
Sourcepub fn length_squared(self) -> Scalar
pub fn length_squared(self) -> Scalar
Computes the squared length or norm of the complex number used to represent the rotation.
This is generally faster than Rotation::length()
, as it avoids a square
root operation.
The length is typically expected to be 1.0
. Unexpectedly denormalized rotations
can be a result of incorrect construction or floating point error caused by
successive operations.
Sourcepub fn length_recip(self) -> Scalar
pub fn length_recip(self) -> Scalar
Computes 1.0 / self.length()
.
For valid results, self
must not have a length of zero.
Sourcepub fn try_normalize(self) -> Option<Self>
pub fn try_normalize(self) -> Option<Self>
Returns self
with a length of 1.0
if possible, and None
otherwise.
None
will be returned if the sine and cosine of self
are both zero (or very close to zero),
or if either of them is NaN or infinite.
Note that Rotation
should typically already be normalized by design.
Manual normalization is only needed when successive operations result in
accumulated floating point error, or if the rotation was constructed
with invalid values.
Sourcepub fn normalize(self) -> Self
pub fn normalize(self) -> Self
Returns self
with a length of 1.0
.
Note that Rotation
should typically already be normalized by design.
Manual normalization is only needed when successive operations result in
accumulated floating point error, or if the rotation was constructed
with invalid values.
§Panics
Panics if self
has a length of zero, NaN, or infinity when debug assertions are enabled.
Sourcepub fn fast_renormalize(self) -> Self
pub fn fast_renormalize(self) -> Self
Returns self
after an approximate normalization,
assuming the value is already nearly normalized.
Useful for preventing numerical error accumulation.
Sourcepub fn is_normalized(self) -> bool
pub fn is_normalized(self) -> bool
Returns whether self
has a length of 1.0
or not.
Uses a precision threshold of approximately 1e-4
.
Sourcepub fn is_near_identity(self) -> bool
pub fn is_near_identity(self) -> bool
Returns true
if the rotation is near Rotation::IDENTITY
.
Sourcepub fn angle_between(self, other: Self) -> Scalar
pub fn angle_between(self, other: Self) -> Scalar
Returns the angle in radians needed to make self
and other
coincide.
Sourcepub fn inverse(self) -> Self
pub fn inverse(self) -> Self
Returns the inverse of the rotation. This is also the conjugate of the unit complex number representing the rotation.
Sourcepub fn add_angle(&self, radians: Scalar) -> Self
pub fn add_angle(&self, radians: Scalar) -> Self
Adds the given counterclockiwise angle in radians to the Rotation
.
Uses small-angle approximation
Sourcepub fn nlerp(self, end: Self, s: Scalar) -> Self
pub fn nlerp(self, end: Self, s: Scalar) -> Self
Performs a linear interpolation between self
and rhs
based on
the value s
, and normalizes the rotation afterwards.
When s == 0.0
, the result will be equal to self
.
When s == 1.0
, the result will be equal to rhs
.
This is slightly more efficient than slerp
, and produces a similar result
when the difference between the two rotations is small. At larger differences,
the result resembles a kind of ease-in-out effect.
If you would like the angular velocity to remain constant, consider using slerp
instead.
§Details
nlerp
corresponds to computing an angle for a point at position s
on a line drawn
between the endpoints of the arc formed by self
and rhs
on a unit circle,
and normalizing the result afterwards.
Note that if the angles are opposite like 0 and π, the line will pass through the origin,
and the resulting angle will always be either self
or rhs
depending on s
.
If s
happens to be 0.5
in this case, a valid rotation cannot be computed, and self
will be returned as a fallback.
§Example
let rot1 = Rotation::IDENTITY;
let rot2 = Rotation::degrees(135.0);
let result1 = rot1.nlerp(rot2, 1.0 / 3.0);
assert_relative_eq!(result1.as_degrees(), 28.675055, epsilon = 0.0001);
let result2 = rot1.nlerp(rot2, 0.5);
assert_relative_eq!(result2.as_degrees(), 67.5);
Sourcepub fn slerp(self, end: Self, s: Scalar) -> Self
pub fn slerp(self, end: Self, s: Scalar) -> Self
Performs a spherical linear interpolation between self
and end
based on the value s
.
This corresponds to interpolating between the two angles at a constant angular velocity.
When s == 0.0
, the result will be equal to self
.
When s == 1.0
, the result will be equal to rhs
.
If you would like the rotation to have a kind of ease-in-out effect, consider
using the slightly more efficient nlerp
instead.
§Example
let rot1 = Rotation::IDENTITY;
let rot2 = Rotation::degrees(135.0);
let result1 = rot1.slerp(rot2, 1.0 / 3.0);
assert_eq!(result1.as_degrees(), 45.0);
let result2 = rot1.slerp(rot2, 0.5);
assert_eq!(result2.as_degrees(), 67.5);
Trait Implementations§
Source§impl Component for Rotation
impl Component for Rotation
Source§const STORAGE_TYPE: StorageType = bevy::ecs::component::StorageType::Table
const STORAGE_TYPE: StorageType = bevy::ecs::component::StorageType::Table
Source§fn register_required_components(
requiree: ComponentId,
components: &mut Components,
storages: &mut Storages,
required_components: &mut RequiredComponents,
inheritance_depth: u16,
)
fn register_required_components( requiree: ComponentId, components: &mut Components, storages: &mut Storages, required_components: &mut RequiredComponents, inheritance_depth: u16, )
Source§fn register_component_hooks(hooks: &mut ComponentHooks)
fn register_component_hooks(hooks: &mut ComponentHooks)
ComponentHooks
.Source§impl From<&GlobalTransform> for Rotation
impl From<&GlobalTransform> for Rotation
Source§fn from(value: &GlobalTransform) -> Self
fn from(value: &GlobalTransform) -> Self
Source§impl From<GlobalTransform> for Rotation
impl From<GlobalTransform> for Rotation
Source§fn from(value: GlobalTransform) -> Self
fn from(value: GlobalTransform) -> Self
Source§impl From<Rotation> for PreSolveRotation
impl From<Rotation> for PreSolveRotation
Source§impl From<Rotation> for Quaternion
impl From<Rotation> for Quaternion
Source§impl FromReflect for Rotation
impl FromReflect for Rotation
Source§fn from_reflect(reflect: &dyn PartialReflect) -> Option<Self>
fn from_reflect(reflect: &dyn PartialReflect) -> Option<Self>
Self
from a reflected value.Source§fn take_from_reflect(
reflect: Box<dyn PartialReflect>,
) -> Result<Self, Box<dyn PartialReflect>>
fn take_from_reflect( reflect: Box<dyn PartialReflect>, ) -> Result<Self, Box<dyn PartialReflect>>
Self
using,
constructing the value using from_reflect
if that fails. Read moreSource§impl GetTypeRegistration for Rotation
impl GetTypeRegistration for Rotation
Source§fn get_type_registration() -> TypeRegistration
fn get_type_registration() -> TypeRegistration
TypeRegistration
for this type.Source§fn register_type_dependencies(registry: &mut TypeRegistry)
fn register_type_dependencies(registry: &mut TypeRegistry)
Source§impl MulAssign for Rotation
impl MulAssign for Rotation
Source§fn mul_assign(&mut self, rhs: Self)
fn mul_assign(&mut self, rhs: Self)
*=
operation. Read moreSource§impl PartialReflect for Rotation
impl PartialReflect for Rotation
Source§fn get_represented_type_info(&self) -> Option<&'static TypeInfo>
fn get_represented_type_info(&self) -> Option<&'static TypeInfo>
Source§fn clone_value(&self) -> Box<dyn PartialReflect>
fn clone_value(&self) -> Box<dyn PartialReflect>
Reflect
trait object. Read moreSource§fn try_apply(&mut self, value: &dyn PartialReflect) -> Result<(), ApplyError>
fn try_apply(&mut self, value: &dyn PartialReflect) -> Result<(), ApplyError>
Source§fn reflect_kind(&self) -> ReflectKind
fn reflect_kind(&self) -> ReflectKind
Source§fn reflect_ref(&self) -> ReflectRef<'_>
fn reflect_ref(&self) -> ReflectRef<'_>
Source§fn reflect_mut(&mut self) -> ReflectMut<'_>
fn reflect_mut(&mut self) -> ReflectMut<'_>
Source§fn reflect_owned(self: Box<Self>) -> ReflectOwned
fn reflect_owned(self: Box<Self>) -> ReflectOwned
Source§fn try_into_reflect(
self: Box<Self>,
) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>
fn try_into_reflect( self: Box<Self>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>
Source§fn try_as_reflect(&self) -> Option<&dyn Reflect>
fn try_as_reflect(&self) -> Option<&dyn Reflect>
Source§fn try_as_reflect_mut(&mut self) -> Option<&mut dyn Reflect>
fn try_as_reflect_mut(&mut self) -> Option<&mut dyn Reflect>
Source§fn into_partial_reflect(self: Box<Self>) -> Box<dyn PartialReflect>
fn into_partial_reflect(self: Box<Self>) -> Box<dyn PartialReflect>
Source§fn as_partial_reflect(&self) -> &dyn PartialReflect
fn as_partial_reflect(&self) -> &dyn PartialReflect
Source§fn as_partial_reflect_mut(&mut self) -> &mut dyn PartialReflect
fn as_partial_reflect_mut(&mut self) -> &mut dyn PartialReflect
Source§fn reflect_partial_eq(&self, value: &dyn PartialReflect) -> Option<bool>
fn reflect_partial_eq(&self, value: &dyn PartialReflect) -> Option<bool>
Source§fn apply(&mut self, value: &(dyn PartialReflect + 'static))
fn apply(&mut self, value: &(dyn PartialReflect + 'static))
Source§fn reflect_hash(&self) -> Option<u64>
fn reflect_hash(&self) -> Option<u64>
Source§fn serializable(&self) -> Option<Serializable<'_>>
fn serializable(&self) -> Option<Serializable<'_>>
Source§fn is_dynamic(&self) -> bool
fn is_dynamic(&self) -> bool
Source§impl Reflect for Rotation
impl Reflect for Rotation
Source§fn as_any_mut(&mut self) -> &mut dyn Any
fn as_any_mut(&mut self) -> &mut dyn Any
&mut dyn Any
. Read moreSource§fn into_reflect(self: Box<Self>) -> Box<dyn Reflect>
fn into_reflect(self: Box<Self>) -> Box<dyn Reflect>
Source§fn as_reflect(&self) -> &dyn Reflect
fn as_reflect(&self) -> &dyn Reflect
Source§fn as_reflect_mut(&mut self) -> &mut dyn Reflect
fn as_reflect_mut(&mut self) -> &mut dyn Reflect
Source§impl Struct for Rotation
impl Struct for Rotation
Source§fn field(&self, name: &str) -> Option<&dyn PartialReflect>
fn field(&self, name: &str) -> Option<&dyn PartialReflect>
name
as a &dyn PartialReflect
.Source§fn field_mut(&mut self, name: &str) -> Option<&mut dyn PartialReflect>
fn field_mut(&mut self, name: &str) -> Option<&mut dyn PartialReflect>
name
as a
&mut dyn PartialReflect
.Source§fn field_at(&self, index: usize) -> Option<&dyn PartialReflect>
fn field_at(&self, index: usize) -> Option<&dyn PartialReflect>
index
as a
&dyn PartialReflect
.Source§fn field_at_mut(&mut self, index: usize) -> Option<&mut dyn PartialReflect>
fn field_at_mut(&mut self, index: usize) -> Option<&mut dyn PartialReflect>
index
as a &mut dyn PartialReflect
.Source§fn name_at(&self, index: usize) -> Option<&str>
fn name_at(&self, index: usize) -> Option<&str>
index
.Source§fn iter_fields(&self) -> FieldIter<'_>
fn iter_fields(&self) -> FieldIter<'_>
Source§fn clone_dynamic(&self) -> DynamicStruct
fn clone_dynamic(&self) -> DynamicStruct
DynamicStruct
.Source§fn get_represented_struct_info(&self) -> Option<&'static StructInfo>
fn get_represented_struct_info(&self) -> Option<&'static StructInfo>
None
if TypeInfo
is not available.Source§impl TypePath for Rotation
impl TypePath for Rotation
Source§fn type_path() -> &'static str
fn type_path() -> &'static str
Source§fn short_type_path() -> &'static str
fn short_type_path() -> &'static str
Source§fn type_ident() -> Option<&'static str>
fn type_ident() -> Option<&'static str>
Source§fn crate_name() -> Option<&'static str>
fn crate_name() -> Option<&'static str>
impl Copy for Rotation
impl StructuralPartialEq for Rotation
Auto Trait Implementations§
impl Freeze for Rotation
impl RefUnwindSafe for Rotation
impl Send for Rotation
impl Sync for Rotation
impl Unpin for Rotation
impl UnwindSafe for Rotation
Blanket Implementations§
Source§impl<T, U> AsBindGroupShaderType<U> for T
impl<T, U> AsBindGroupShaderType<U> for T
Source§fn as_bind_group_shader_type(&self, _images: &RenderAssets<GpuImage>) -> U
fn as_bind_group_shader_type(&self, _images: &RenderAssets<GpuImage>) -> U
T
ShaderType
for self
. When used in AsBindGroup
derives, it is safe to assume that all images in self
exist.Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<C> Bundle for Cwhere
C: Component,
impl<C> Bundle for Cwhere
C: Component,
fn component_ids( components: &mut Components, storages: &mut Storages, ids: &mut impl FnMut(ComponentId), )
unsafe fn from_components<T, F>(ctx: &mut T, func: &mut F) -> C
Source§fn register_required_components(
components: &mut Components,
storages: &mut Storages,
required_components: &mut RequiredComponents,
)
fn register_required_components( components: &mut Components, storages: &mut Storages, required_components: &mut RequiredComponents, )
Bundle
.Source§fn get_component_ids(
components: &Components,
ids: &mut impl FnMut(Option<ComponentId>),
)
fn get_component_ids( components: &Components, ids: &mut impl FnMut(Option<ComponentId>), )
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
Source§impl<C> DynamicBundle for Cwhere
C: Component,
impl<C> DynamicBundle for Cwhere
C: Component,
fn get_components(self, func: &mut impl FnMut(StorageType, OwningPtr<'_>))
Source§impl<T> DynamicTypePath for Twhere
T: TypePath,
impl<T> DynamicTypePath for Twhere
T: TypePath,
Source§fn reflect_type_path(&self) -> &str
fn reflect_type_path(&self) -> &str
TypePath::type_path
.Source§fn reflect_short_type_path(&self) -> &str
fn reflect_short_type_path(&self) -> &str
Source§fn reflect_type_ident(&self) -> Option<&str>
fn reflect_type_ident(&self) -> Option<&str>
TypePath::type_ident
.Source§fn reflect_crate_name(&self) -> Option<&str>
fn reflect_crate_name(&self) -> Option<&str>
TypePath::crate_name
.Source§fn reflect_module_path(&self) -> Option<&str>
fn reflect_module_path(&self) -> Option<&str>
Source§impl<T> DynamicTyped for Twhere
T: Typed,
impl<T> DynamicTyped for Twhere
T: Typed,
Source§fn reflect_type_info(&self) -> &'static TypeInfo
fn reflect_type_info(&self) -> &'static TypeInfo
Typed::type_info
.Source§impl<T> FromWorld for Twhere
T: Default,
impl<T> FromWorld for Twhere
T: Default,
Source§fn from_world(_world: &mut World) -> T
fn from_world(_world: &mut World) -> T
Creates Self
using default()
.
Source§impl<S> GetField for Swhere
S: Struct,
impl<S> GetField for Swhere
S: Struct,
Source§impl<T> GetPath for T
impl<T> GetPath for T
Source§fn reflect_path<'p>(
&self,
path: impl ReflectPath<'p>,
) -> Result<&(dyn PartialReflect + 'static), ReflectPathError<'p>>
fn reflect_path<'p>( &self, path: impl ReflectPath<'p>, ) -> Result<&(dyn PartialReflect + 'static), ReflectPathError<'p>>
path
. Read moreSource§fn reflect_path_mut<'p>(
&mut self,
path: impl ReflectPath<'p>,
) -> Result<&mut (dyn PartialReflect + 'static), ReflectPathError<'p>>
fn reflect_path_mut<'p>( &mut self, path: impl ReflectPath<'p>, ) -> Result<&mut (dyn PartialReflect + 'static), ReflectPathError<'p>>
path
. Read moreSource§fn path<'p, T>(
&self,
path: impl ReflectPath<'p>,
) -> Result<&T, ReflectPathError<'p>>where
T: Reflect,
fn path<'p, T>(
&self,
path: impl ReflectPath<'p>,
) -> Result<&T, ReflectPathError<'p>>where
T: Reflect,
path
. Read moreSource§fn path_mut<'p, T>(
&mut self,
path: impl ReflectPath<'p>,
) -> Result<&mut T, ReflectPathError<'p>>where
T: Reflect,
fn path_mut<'p, T>(
&mut self,
path: impl ReflectPath<'p>,
) -> Result<&mut T, ReflectPathError<'p>>where
T: Reflect,
path
. Read moreSource§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self
from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self
is actually part of its subset T
(and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset
but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self
to the equivalent element of its superset.