[][src]Struct pathfinder_simd::x86::F32x2

pub struct F32x2(pub u64);

Methods

impl F32x2[src]

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

pub fn x(self) -> f32[src]

pub fn y(self) -> f32[src]

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

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

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

impl F32x2[src]

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

pub fn splat(x: f32) -> F32x2[src]

pub fn approx_recip(self) -> F32x2[src]

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

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

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

pub fn abs(self) -> F32x2[src]

pub fn floor(self) -> F32x2[src]

pub fn ceil(self) -> F32x2[src]

pub fn sqrt(self) -> F32x2[src]

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

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

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

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

pub fn to_f32x4(self) -> F32x4[src]

pub fn to_i32x2(self) -> I32x2[src]

pub fn to_i32x4(self) -> I32x4[src]

pub fn yx(self) -> F32x2[src]

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

Trait Implementations

impl Add<F32x2> for F32x2[src]

type Output = F32x2

The resulting type after applying the + operator.

impl AddAssign<F32x2> for F32x2[src]

impl Clone for F32x2[src]

impl Copy for F32x2[src]

impl Debug for F32x2[src]

impl Default for F32x2[src]

impl Div<F32x2> for F32x2[src]

type Output = F32x2

The resulting type after applying the / operator.

impl Index<usize> for F32x2[src]

type Output = f32

The returned type after indexing.

impl IndexMut<usize> for F32x2[src]

impl Mul<F32x2> for F32x2[src]

type Output = F32x2

The resulting type after applying the * operator.

impl MulAssign<F32x2> for F32x2[src]

impl Neg for F32x2[src]

type Output = F32x2

The resulting type after applying the - operator.

impl PartialEq<F32x2> for F32x2[src]

impl Sub<F32x2> for F32x2[src]

type Output = F32x2

The resulting type after applying the - operator.

impl SubAssign<F32x2> for F32x2[src]

Auto Trait Implementations

impl RefUnwindSafe for F32x2

impl Send for F32x2

impl Sync for F32x2

impl Unpin for F32x2

impl UnwindSafe for F32x2

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.