pub type SimdPose<N> = Isometry2<N>;Expand description
Generic isometry type (nalgebra) for SoA SIMD code
Aliased Type§
#[repr(C)]pub struct SimdPose<N> {
pub rotation: Unit<Complex<N>>,
pub translation: Translation<N, 2>,
}Fields§
§rotation: Unit<Complex<N>>The pure rotational part of this isometry.
translation: Translation<N, 2>The pure translational part of this isometry.