Struct pathfinder_simd::x86::F32x2

source ·
pub struct F32x2(pub u64);

Tuple Fields§

§0: u64

Implementations§

source§

impl F32x2

source

pub fn from_slice(slice: &[f32]) -> F32x2

source

pub fn x(self) -> f32

source

pub fn y(self) -> f32

source

pub fn set_x(&mut self, x: f32)

source

pub fn set_y(&mut self, y: f32)

source

pub fn approx_eq(self, other: F32x2, epsilon: f32) -> bool

source§

impl F32x2

source

pub fn new(a: f32, b: f32) -> F32x2

source

pub fn splat(x: f32) -> F32x2

source

pub fn approx_recip(self) -> F32x2

source

pub fn min(self, other: F32x2) -> F32x2

source

pub fn max(self, other: F32x2) -> F32x2

source

pub fn clamp(self, min: F32x2, max: F32x2) -> F32x2

source

pub fn abs(self) -> F32x2

source

pub fn floor(self) -> F32x2

source

pub fn ceil(self) -> F32x2

source

pub fn sqrt(self) -> F32x2

source

pub fn packed_eq(self, other: F32x2) -> U32x2

source

pub fn packed_gt(self, other: F32x2) -> U32x2

source

pub fn packed_lt(self, other: F32x2) -> U32x2

source

pub fn packed_le(self, other: F32x2) -> U32x2

source

pub fn to_f32x4(self) -> F32x4

source

pub fn to_i32x2(self) -> I32x2

source

pub fn to_i32x4(self) -> I32x4

source

pub fn yx(self) -> F32x2

source

pub fn concat_xy_xy(self, other: F32x2) -> F32x4

Trait Implementations§

source§

impl Add for F32x2

§

type Output = F32x2

The resulting type after applying the + operator.
source§

fn add(self, other: F32x2) -> F32x2

Performs the + operation. Read more
source§

impl AddAssign for F32x2

source§

fn add_assign(&mut self, other: F32x2)

Performs the += operation. Read more
source§

impl Clone for F32x2

source§

fn clone(&self) -> F32x2

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 F32x2

source§

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

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

impl Default for F32x2

source§

fn default() -> F32x2

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

impl Div for F32x2

§

type Output = F32x2

The resulting type after applying the / operator.
source§

fn div(self, other: F32x2) -> F32x2

Performs the / operation. Read more
source§

impl Index<usize> for F32x2

§

type Output = f32

The returned type after indexing.
source§

fn index(&self, index: usize) -> &f32

Performs the indexing (container[index]) operation. Read more
source§

impl IndexMut<usize> for F32x2

source§

fn index_mut(&mut self, index: usize) -> &mut f32

Performs the mutable indexing (container[index]) operation. Read more
source§

impl Mul for F32x2

§

type Output = F32x2

The resulting type after applying the * operator.
source§

fn mul(self, other: F32x2) -> F32x2

Performs the * operation. Read more
source§

impl MulAssign for F32x2

source§

fn mul_assign(&mut self, other: F32x2)

Performs the *= operation. Read more
source§

impl Neg for F32x2

§

type Output = F32x2

The resulting type after applying the - operator.
source§

fn neg(self) -> F32x2

Performs the unary - operation. Read more
source§

impl PartialEq for F32x2

source§

fn eq(&self, other: &F32x2) -> 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 Sub for F32x2

§

type Output = F32x2

The resulting type after applying the - operator.
source§

fn sub(self, other: F32x2) -> F32x2

Performs the - operation. Read more
source§

impl SubAssign for F32x2

source§

fn sub_assign(&mut self, other: F32x2)

Performs the -= operation. Read more
source§

impl Copy for F32x2

Auto Trait Implementations§

§

impl Freeze for F32x2

§

impl RefUnwindSafe for F32x2

§

impl Send for F32x2

§

impl Sync for F32x2

§

impl Unpin for F32x2

§

impl UnwindSafe for F32x2

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where 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 T
where 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 T
where 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 T
where 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.