Enum rerun::transform::Transform3D
source · pub enum Transform3D {
TranslationAndMat3x3(TranslationAndMat3x3),
TranslationRotationScale(TranslationRotationScale3D),
}Expand description
Datatype: Representation of a 3D affine transform.
Rarely used directly, prefer using the underlying representation classes and pass them
directly to Transform3D::child_from_parent or Transform3D::parent_from_child.
Variants§
TranslationAndMat3x3(TranslationAndMat3x3)
Translation plus a 3x3 matrix for scale, rotation, skew, etc.
TranslationRotationScale(TranslationRotationScale3D)
Translation, rotation and scale, decomposed.
Implementations§
source§impl Transform3D
impl Transform3D
sourcepub const IDENTITY: Transform3D = _
pub const IDENTITY: Transform3D = _
The identity transform, representing no transform.
sourcepub fn from_translation(translation: impl Into<Vec3D>) -> Transform3D
pub fn from_translation(translation: impl Into<Vec3D>) -> Transform3D
From a translation.
sourcepub fn from_translation_rotation(
translation: impl Into<Vec3D>,
rotation: impl Into<Rotation3D>
) -> Transform3D
pub fn from_translation_rotation( translation: impl Into<Vec3D>, rotation: impl Into<Rotation3D> ) -> Transform3D
From a translation applied after a rotation, known as a rigid transformation.
sourcepub fn from_translation_mat3x3(
translation: impl Into<Vec3D>,
mat3x3: impl Into<Mat3x3>
) -> Transform3D
pub fn from_translation_mat3x3( translation: impl Into<Vec3D>, mat3x3: impl Into<Mat3x3> ) -> Transform3D
From a translation applied after a 3x3 matrix.
sourcepub fn from_translation_rotation_scale(
translation: impl Into<Vec3D>,
rotation: impl Into<Rotation3D>,
scale: impl Into<Scale3D>
) -> Transform3D
pub fn from_translation_rotation_scale( translation: impl Into<Vec3D>, rotation: impl Into<Rotation3D>, scale: impl Into<Scale3D> ) -> Transform3D
From a translation, applied after a rotation & scale, known as an affine transformation.
sourcepub fn from_rotation_scale(
rotation: impl Into<Rotation3D>,
scale: impl Into<Scale3D>
) -> Transform3D
pub fn from_rotation_scale( rotation: impl Into<Rotation3D>, scale: impl Into<Scale3D> ) -> Transform3D
From a rotation & scale
sourcepub fn from_parent(self) -> Transform3D
pub fn from_parent(self) -> Transform3D
Indicate that this transform is from parent to child. This is the oppositve of the default, which is from child to parent.
sourcepub fn is_from_parent(&self) -> bool
pub fn is_from_parent(&self) -> bool
Indicates whether this transform is from parent to child. This is the oppositve of the default, which is from child to parent.
Trait Implementations§
source§impl Borrow<Transform3D> for OutOfTreeTransform3D
impl Borrow<Transform3D> for OutOfTreeTransform3D
source§fn borrow(&self) -> &Transform3D
fn borrow(&self) -> &Transform3D
source§impl Borrow<Transform3D> for Transform3D
impl Borrow<Transform3D> for Transform3D
source§fn borrow(&self) -> &Transform3D
fn borrow(&self) -> &Transform3D
source§impl Clone for Transform3D
impl Clone for Transform3D
source§fn clone(&self) -> Transform3D
fn clone(&self) -> Transform3D
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for Transform3D
impl Debug for Transform3D
source§impl Default for Transform3D
impl Default for Transform3D
source§fn default() -> Transform3D
fn default() -> Transform3D
source§impl From<RotationAxisAngle> for Transform3D
impl From<RotationAxisAngle> for Transform3D
source§fn from(v: RotationAxisAngle) -> Transform3D
fn from(v: RotationAxisAngle) -> Transform3D
source§impl From<TranslationAndMat3x3> for Transform3D
impl From<TranslationAndMat3x3> for Transform3D
source§fn from(v: TranslationAndMat3x3) -> Transform3D
fn from(v: TranslationAndMat3x3) -> Transform3D
source§impl From<TranslationRotationScale3D> for Transform3D
impl From<TranslationRotationScale3D> for Transform3D
source§fn from(v: TranslationRotationScale3D) -> Transform3D
fn from(v: TranslationRotationScale3D) -> Transform3D
source§impl From<Vec3D> for Transform3D
impl From<Vec3D> for Transform3D
source§fn from(v: Vec3D) -> Transform3D
fn from(v: Vec3D) -> Transform3D
source§impl Loggable for Transform3D
impl Loggable for Transform3D
type Name = DatatypeName
source§fn name() -> <Transform3D as Loggable>::Name
fn name() -> <Transform3D as Loggable>::Name
rerun.datatypes.Vec2D.source§fn arrow_datatype() -> DataType
fn arrow_datatype() -> DataType
arrow2::datatypes::DataType, excluding datatype extensions.source§fn to_arrow_opt<'a>(
data: impl IntoIterator<Item = Option<impl Into<Cow<'a, Transform3D>>>>
) -> Result<Box<dyn Array>, SerializationError>where
Transform3D: Clone + 'a,
fn to_arrow_opt<'a>(
data: impl IntoIterator<Item = Option<impl Into<Cow<'a, Transform3D>>>>
) -> Result<Box<dyn Array>, SerializationError>where
Transform3D: Clone + 'a,
Loggable, serializes them into an Arrow array.
The Arrow array’s datatype will match Loggable::arrow_field. Read moresource§fn from_arrow_opt(
arrow_data: &(dyn Array + 'static)
) -> Result<Vec<Option<Transform3D>>, DeserializationError>where
Transform3D: Sized,
fn from_arrow_opt(
arrow_data: &(dyn Array + 'static)
) -> Result<Vec<Option<Transform3D>>, DeserializationError>where
Transform3D: Sized,
source§fn extended_arrow_datatype() -> DataType
fn extended_arrow_datatype() -> DataType
arrow2::datatypes::DataType, including datatype extensions. Read moresource§fn arrow_field() -> Field
fn arrow_field() -> Field
arrow2::datatypes::Field, including datatype extensions. Read moresource§fn to_arrow<'a>(
data: impl IntoIterator<Item = impl Into<Cow<'a, Self>>>
) -> Result<Box<dyn Array>, SerializationError>where
Self: 'a,
fn to_arrow<'a>(
data: impl IntoIterator<Item = impl Into<Cow<'a, Self>>>
) -> Result<Box<dyn Array>, SerializationError>where
Self: 'a,
Loggable, serializes
them into an Arrow array.
The Arrow array’s datatype will match Loggable::arrow_field. Read moresource§fn from_arrow(
data: &(dyn Array + 'static)
) -> Result<Vec<Self>, DeserializationError>
fn from_arrow( data: &(dyn Array + 'static) ) -> Result<Vec<Self>, DeserializationError>
source§impl PartialEq for Transform3D
impl PartialEq for Transform3D
source§fn eq(&self, other: &Transform3D) -> bool
fn eq(&self, other: &Transform3D) -> bool
self and other values to be equal, and is used
by ==.source§impl SizeBytes for Transform3D
impl SizeBytes for Transform3D
source§fn heap_size_bytes(&self) -> u64
fn heap_size_bytes(&self) -> u64
self on the heap, in bytes.source§fn total_size_bytes(&self) -> u64
fn total_size_bytes(&self) -> u64
self in bytes, accounting for both stack and heap space.source§fn stack_size_bytes(&self) -> u64
fn stack_size_bytes(&self) -> u64
self on the stack, in bytes. Read moreimpl Copy for Transform3D
impl StructuralPartialEq for Transform3D
Auto Trait Implementations§
impl Freeze for Transform3D
impl RefUnwindSafe for Transform3D
impl Send for Transform3D
impl Sync for Transform3D
impl Unpin for Transform3D
impl UnwindSafe for Transform3D
Blanket Implementations§
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<T> CheckedAs for T
impl<T> CheckedAs for T
source§fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
source§impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
source§fn checked_cast_from(src: Src) -> Option<Dst>
fn checked_cast_from(src: Src) -> Option<Dst>
source§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<L> LoggableBatch for L
impl<L> LoggableBatch for L
type Name = <L as Loggable>::Name
source§fn name(&self) -> <L as LoggableBatch>::Name
fn name(&self) -> <L as LoggableBatch>::Name
rerun.datatypes.Vec2D.source§fn num_instances(&self) -> usize
fn num_instances(&self) -> usize
source§fn arrow_field(&self) -> Field
fn arrow_field(&self) -> Field
arrow2::datatypes::Field, including datatype extensions.