Struct wrapped2d::common::math::Vec2

source ·
#[repr(C)]
pub struct Vec2 { pub x: f32, pub y: f32, }

Fields§

§x: f32§y: f32

Implementations§

source§

impl Vec2

source

pub fn sqr_norm(&self) -> f32

source

pub fn norm(&self) -> f32

source

pub fn sqew(&self) -> Vec2

source§

impl Vec2

source

pub fn as_array(&self) -> &[f32; 2]

source

pub fn as_array_mut(&mut self) -> &mut [f32; 2]

source

pub fn from_array_ref(array: &[f32; 2]) -> &Vec2

source

pub fn from_array_mut(array: &mut [f32; 2]) -> &mut Vec2

Trait Implementations§

source§

impl<'a, 'b> Add<&'a Vec2> for &'b Vec2

§

type Output = <Vec2 as Add>::Output

The resulting type after applying the + operator.
source§

fn add(self, other: &'a Vec2) -> <Vec2 as Add<Vec2>>::Output

Performs the + operation. Read more
source§

impl<'a> Add<&'a Vec2> for Vec2

§

type Output = <Vec2 as Add>::Output

The resulting type after applying the + operator.
source§

fn add(self, other: &'a Vec2) -> <Vec2 as Add<Vec2>>::Output

Performs the + operation. Read more
source§

impl<'a> Add<Vec2> for &'a Vec2

§

type Output = <Vec2 as Add>::Output

The resulting type after applying the + operator.
source§

fn add(self, other: Vec2) -> <Vec2 as Add<Vec2>>::Output

Performs the + operation. Read more
source§

impl Add for Vec2

§

type Output = Vec2

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl Clone for Vec2

source§

fn clone(&self) -> Vec2

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 Vec2

source§

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

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

impl<'de> Deserialize<'de> for Vec2

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<'a, 'b> Div<&'a f32> for &'b Vec2

§

type Output = <Vec2 as Div<f32>>::Output

The resulting type after applying the / operator.
source§

fn div(self, other: &'a f32) -> <Vec2 as Div<f32>>::Output

Performs the / operation. Read more
source§

impl<'a> Div<&'a f32> for Vec2

§

type Output = <Vec2 as Div<f32>>::Output

The resulting type after applying the / operator.
source§

fn div(self, other: &'a f32) -> <Vec2 as Div<f32>>::Output

Performs the / operation. Read more
source§

impl<'a> Div<f32> for &'a Vec2

§

type Output = <Vec2 as Div<f32>>::Output

The resulting type after applying the / operator.
source§

fn div(self, other: f32) -> <Vec2 as Div<f32>>::Output

Performs the / operation. Read more
source§

impl Div<f32> for Vec2

§

type Output = Vec2

The resulting type after applying the / operator.
source§

fn div(self, factor: f32) -> Vec2

Performs the / operation. Read more
source§

impl From<[f32; 2]> for Vec2

source§

fn from(v: [f32; 2]) -> Vec2

Converts to this type from the input type.
source§

impl From<Point2<f32>> for Vec2

source§

fn from(v: Point2<f32>) -> Vec2

Converts to this type from the input type.
source§

impl From<Point2<f32>> for Vec2

source§

fn from(v: Point2<f32>) -> Vec2

Converts to this type from the input type.
source§

impl From<Vec2> for [f32; 2]

source§

fn from(v: Vec2) -> [f32; 2]

Converts to this type from the input type.
source§

impl From<Vec2> for Point2<f32>

source§

fn from(v: Vec2) -> Point2<f32>

Converts to this type from the input type.
source§

impl From<Vec2> for Point2<f32>

source§

fn from(v: Vec2) -> Point2<f32>

Converts to this type from the input type.
source§

impl From<Vec2> for Vector2<f32>

source§

fn from(v: Vec2) -> Vector2<f32>

Converts to this type from the input type.
source§

impl From<Vec2> for Vector2<f32>

source§

fn from(v: Vec2) -> Vector2<f32>

Converts to this type from the input type.
source§

impl From<Vector2<f32>> for Vec2

source§

fn from(v: Vector2<f32>) -> Vec2

Converts to this type from the input type.
source§

impl From<Vector2<f32>> for Vec2

source§

fn from(v: Vector2<f32>) -> Vec2

Converts to this type from the input type.
source§

impl<'a, 'b> Mul<&'a f32> for &'b Vec2

§

type Output = <Vec2 as Mul<f32>>::Output

The resulting type after applying the * operator.
source§

fn mul(self, other: &'a f32) -> <Vec2 as Mul<f32>>::Output

Performs the * operation. Read more
source§

impl<'a> Mul<&'a f32> for Vec2

§

type Output = <Vec2 as Mul<f32>>::Output

The resulting type after applying the * operator.
source§

fn mul(self, other: &'a f32) -> <Vec2 as Mul<f32>>::Output

Performs the * operation. Read more
source§

impl<'a> Mul<Vec2> for &'a Transform

§

type Output = Vec2

The resulting type after applying the * operator.
source§

fn mul(self, v: Vec2) -> Vec2

Performs the * operation. Read more
source§

impl<'a> Mul<f32> for &'a Vec2

§

type Output = <Vec2 as Mul<f32>>::Output

The resulting type after applying the * operator.
source§

fn mul(self, other: f32) -> <Vec2 as Mul<f32>>::Output

Performs the * operation. Read more
source§

impl Mul<f32> for Vec2

§

type Output = Vec2

The resulting type after applying the * operator.
source§

fn mul(self, factor: f32) -> Vec2

Performs the * operation. Read more
source§

impl<'a> Neg for &'a Vec2

§

type Output = Vec2

The resulting type after applying the - operator.
source§

fn neg(self) -> Vec2

Performs the unary - operation. Read more
source§

impl Neg for Vec2

§

type Output = Vec2

The resulting type after applying the - operator.
source§

fn neg(self) -> Vec2

Performs the unary - operation. Read more
source§

impl PartialEq for Vec2

source§

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

source§

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

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

impl<'a, 'b> Sub<&'a Vec2> for &'b Vec2

§

type Output = <Vec2 as Sub>::Output

The resulting type after applying the - operator.
source§

fn sub(self, other: &'a Vec2) -> <Vec2 as Sub<Vec2>>::Output

Performs the - operation. Read more
source§

impl<'a> Sub<&'a Vec2> for Vec2

§

type Output = <Vec2 as Sub>::Output

The resulting type after applying the - operator.
source§

fn sub(self, other: &'a Vec2) -> <Vec2 as Sub<Vec2>>::Output

Performs the - operation. Read more
source§

impl<'a> Sub<Vec2> for &'a Vec2

§

type Output = <Vec2 as Sub>::Output

The resulting type after applying the - operator.
source§

fn sub(self, other: Vec2) -> <Vec2 as Sub<Vec2>>::Output

Performs the - operation. Read more
source§

impl Sub for Vec2

§

type Output = Vec2

The resulting type after applying the - operator.
source§

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

Performs the - operation. Read more
source§

impl Copy for Vec2

source§

impl StructuralPartialEq for Vec2

Auto Trait Implementations§

§

impl RefUnwindSafe for Vec2

§

impl Send for Vec2

§

impl Sync for Vec2

§

impl Unpin for Vec2

§

impl UnwindSafe for Vec2

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.
source§

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