Struct ultraviolet::bivec::Bivec3

source ·
#[repr(C)]
pub struct Bivec3 { pub xy: f32, pub xz: f32, pub yz: f32, }
Expand description

A bivector in 3d space.

In 3d, a bivector has 3 components, each one representing the signed projected area of the bivector onto one of the 3 basis bivectors, which can be thought of as corresponding to each of the three basis planes. This is analogous to the components of a 3d vector, which correspond to the projected length of the vector onto the three basis *vectors. Since in 3d, there are three components for both vectors and bivectors, 3d bivectors have been historically confused with 3d vectors quite a lot.

Please see the module level documentation for more information on bivectors generally!

Fields§

§xy: f32§xz: f32§yz: f32

Implementations§

source§

impl Bivec3

source

pub const fn new(xy: f32, xz: f32, yz: f32) -> Self

source

pub fn zero() -> Self

source

pub fn from_normalized_axis(v: Vec3) -> Self

Create the bivector which represents the same plane of rotation as a given normalized ‘axis vector’

source

pub fn unit_xy() -> Self

source

pub fn unit_xz() -> Self

source

pub fn unit_yz() -> Self

source

pub fn mag_sq(&self) -> f32

source

pub fn mag(&self) -> f32

source

pub fn normalize(&mut self)

source

pub fn normalized(&self) -> Self

source

pub fn dot(&self, rhs: Self) -> f32

source

pub fn layout() -> Layout

source

pub fn as_slice(&self) -> &[f32]

source

pub fn as_byte_slice(&self) -> &[u8]

source

pub fn as_mut_slice(&mut self) -> &mut [f32]

source

pub fn as_mut_byte_slice(&mut self) -> &mut [u8]

source

pub const fn as_ptr(&self) -> *const f32

Returns a constant unsafe pointer to the underlying data in the underlying type. This function is safe because all types here are repr(C) and can be represented as their underlying type.

Safety

It is up to the caller to correctly use this pointer and its bounds.

source

pub fn as_mut_ptr(&mut self) -> *mut f32

Returns a mutable unsafe pointer to the underlying data in the underlying type. This function is safe because all types here are repr(C) and can be represented as their underlying type.

Safety

It is up to the caller to correctly use this pointer and its bounds.

Trait Implementations§

source§

impl Add<Bivec3> for Bivec3

§

type Output = Bivec3

The resulting type after applying the + operator.
source§

fn add(self, rhs: Bivec3) -> Self

Performs the + operation. Read more
source§

impl AddAssign<Bivec3> for Bivec3

source§

fn add_assign(&mut self, rhs: Bivec3)

Performs the += operation. Read more
source§

impl Clone for Bivec3

source§

fn clone(&self) -> Bivec3

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Bivec3

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Bivec3

source§

fn default() -> Bivec3

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for Bivec3

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Div<Bivec3> for Bivec3

§

type Output = Bivec3

The resulting type after applying the / operator.
source§

fn div(self, rhs: Bivec3) -> Self

Performs the / operation. Read more
source§

impl Div<f32> for Bivec3

§

type Output = Bivec3

The resulting type after applying the / operator.
source§

fn div(self, rhs: f32) -> Bivec3

Performs the / operation. Read more
source§

impl DivAssign<Bivec3> for Bivec3

source§

fn div_assign(&mut self, rhs: Bivec3)

Performs the /= operation. Read more
source§

impl DivAssign<f32> for Bivec3

source§

fn div_assign(&mut self, rhs: f32)

Performs the /= operation. Read more
source§

impl Lerp<f32> for Bivec3

source§

fn lerp(&self, end: Self, t: f32) -> Self

Linearly interpolate between self and end by t between 0.0 and 1.0. i.e. (1.0 - t) * self + (t) * end.

For interpolating Rotors with linear interpolation, you almost certainly want to normalize the returned Rotor. For example,

let interpolated_rotor = rotor1.lerp(rotor2, 0.5).normalized();

For most cases (especially where performance is the primary concern, like in animation interpolation for games, this ‘normalized lerp’ or ‘nlerp’ is probably what you want to use. However, there are situations in which you really want the interpolation between two Rotors to be of constant angular velocity. In this case, check out Slerp.

source§

impl Mul<Bivec3> for Bivec3

§

type Output = Bivec3

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Bivec3) -> Self

Performs the * operation. Read more
source§

impl Mul<Bivec3> for f32

§

type Output = Bivec3

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Bivec3) -> Bivec3

Performs the * operation. Read more
source§

impl Mul<f32> for Bivec3

§

type Output = Bivec3

The resulting type after applying the * operator.
source§

fn mul(self, rhs: f32) -> Self

Performs the * operation. Read more
source§

impl MulAssign<Bivec3> for Bivec3

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<f32> for Bivec3

source§

fn mul_assign(&mut self, rhs: f32)

Performs the *= operation. Read more
source§

impl Neg for Bivec3

§

type Output = Bivec3

The resulting type after applying the - operator.
source§

fn neg(self) -> Self

Performs the unary - operation. Read more
source§

impl PartialEq<Bivec3> for Bivec3

source§

fn eq(&self, other: &Bivec3) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for Bivec3

source§

fn serialize<T>(&self, serializer: T) -> Result<T::Ok, T::Error>where T: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Slerp<f32> for Bivec3

source§

fn slerp(&self, end: Self, t: f32) -> Self

Spherical-linear interpolation between self and end based on t from 0.0 to 1.0.

self and end should both be normalized or something bad will happen!

The implementation for SIMD types also requires that the two things being interpolated between are not exactly aligned, or else the result is undefined.

Basically, interpolation that maintains a constant angular velocity from one orientation on a unit hypersphere to another. This is sorta the “high quality” interpolation for Rotors, and it can also be used to interpolate other things, one example being interpolation of 3d normal vectors.

Note that you should often normalize the result returned by this operation, when working with Rotors, etc!

source§

impl Sub<Bivec3> for Bivec3

§

type Output = Bivec3

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Bivec3) -> Self

Performs the - operation. Read more
source§

impl SubAssign<Bivec3> for Bivec3

source§

fn sub_assign(&mut self, rhs: Bivec3)

Performs the -= operation. Read more
source§

impl Zeroable for Bivec3

source§

fn zeroed() -> Self

source§

impl Copy for Bivec3

source§

impl Pod for Bivec3

source§

impl StructuralPartialEq for Bivec3

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CheckedBitPattern for Twhere T: AnyBitPattern,

§

type Bits = T

Self must have the same layout as the specified Bits except for the possible invalid bit patterns being checked during is_valid_bit_pattern.
source§

fn is_valid_bit_pattern(_bits: &T) -> bool

If this function returns true, then it must be valid to reinterpret bits as &Self.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> AnyBitPattern for Twhere T: Pod,

source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,

source§

impl<T> NoUninit for Twhere T: Pod,