[]Struct gdnative::gdnative_common::euclid::TypedSize2D

#[repr(C)]
pub struct TypedSize2D<T, U> { pub width: T, pub height: T, // some fields omitted }

A 2d size tagged with a unit.

Fields

width: Theight: T

Methods

impl<T, U> TypedSize2D<T, U>

pub fn new(width: T, height: T) -> TypedSize2D<T, U>

Constructor taking scalar values.

impl<T, U> TypedSize2D<T, U> where
    T: Clone

pub fn from_lengths(
    width: Length<T, U>,
    height: Length<T, U>
) -> TypedSize2D<T, U>

Constructor taking scalar strongly typed lengths.

impl<T, U> TypedSize2D<T, U> where
    T: Round

pub fn round(&self) -> TypedSize2D<T, U>

Rounds each component to the nearest integer value.

This behavior is preserved for negative values (unlike the basic cast).

impl<T, U> TypedSize2D<T, U> where
    T: Ceil

pub fn ceil(&self) -> TypedSize2D<T, U>

Rounds each component to the smallest integer equal or greater than the original value.

This behavior is preserved for negative values (unlike the basic cast).

impl<T, U> TypedSize2D<T, U> where
    T: Floor

pub fn floor(&self) -> TypedSize2D<T, U>

Rounds each component to the biggest integer equal or lower than the original value.

This behavior is preserved for negative values (unlike the basic cast).

impl<T, U> TypedSize2D<T, U> where
    T: Copy + Mul<T> + Clone

pub fn area(&self) -> <T as Mul<T>>::Output

impl<T, U> TypedSize2D<T, U> where
    T: One + Add<T, Output = T> + Sub<T, Output = T> + Mul<T, Output = T> + Copy

pub fn lerp(&self, other: TypedSize2D<T, U>, t: T) -> TypedSize2D<T, U>

Linearly interpolate between this size and another size.

t is expected to be between zero and one.

impl<T, U> TypedSize2D<T, U> where
    T: Zero + PartialOrd<T>, 

pub fn is_empty_or_negative(&self) -> bool

impl<T, U> TypedSize2D<T, U> where
    T: Zero

pub fn zero() -> TypedSize2D<T, U>

impl<T, U> TypedSize2D<T, U> where
    T: Copy

pub fn width_typed(&self) -> Length<T, U>

Returns self.width as a Length carrying the unit.

pub fn height_typed(&self) -> Length<T, U>

Returns self.height as a Length carrying the unit.

pub fn to_array(&self) -> [T; 2]

pub fn to_vector(&self) -> TypedVector2D<T, U>

pub fn to_untyped(&self) -> TypedSize2D<T, UnknownUnit>

Drop the units, preserving only the numeric value.

pub fn from_untyped(p: &TypedSize2D<T, UnknownUnit>) -> TypedSize2D<T, U>

Tag a unitless value with units.

impl<T, Unit> TypedSize2D<T, Unit> where
    T: Copy + NumCast

pub fn cast<NewT>(&self) -> TypedSize2D<NewT, Unit> where
    NewT: Copy + NumCast

Cast from one numeric representation to another, preserving the units.

When casting from floating point to integer coordinates, the decimals are truncated as one would expect from a simple cast, but this behavior does not always make sense geometrically. Consider using round(), ceil() or floor() before casting.

pub fn try_cast<NewT>(&self) -> Option<TypedSize2D<NewT, Unit>> where
    NewT: Copy + NumCast

Fallible cast from one numeric representation to another, preserving the units.

When casting from floating point to integer coordinates, the decimals are truncated as one would expect from a simple cast, but this behavior does not always make sense geometrically. Consider using round(), ceil() or floor() before casting.

pub fn to_f32(&self) -> TypedSize2D<f32, Unit>

Cast into an f32 size.

pub fn to_f64(&self) -> TypedSize2D<f64, Unit>

Cast into an f64 size.

pub fn to_usize(&self) -> TypedSize2D<usize, Unit>

Cast into an uint size, truncating decimals if any.

When casting from floating point sizes, it is worth considering whether to round(), ceil() or floor() before the cast in order to obtain the desired conversion behavior.

pub fn to_u32(&self) -> TypedSize2D<u32, Unit>

Cast into an u32 size, truncating decimals if any.

When casting from floating point sizes, it is worth considering whether to round(), ceil() or floor() before the cast in order to obtain the desired conversion behavior.

pub fn to_i32(&self) -> TypedSize2D<i32, Unit>

Cast into an i32 size, truncating decimals if any.

When casting from floating point sizes, it is worth considering whether to round(), ceil() or floor() before the cast in order to obtain the desired conversion behavior.

pub fn to_i64(&self) -> TypedSize2D<i64, Unit>

Cast into an i64 size, truncating decimals if any.

When casting from floating point sizes, it is worth considering whether to round(), ceil() or floor() before the cast in order to obtain the desired conversion behavior.

impl<T, U> TypedSize2D<T, U> where
    T: Signed

pub fn abs(&self) -> TypedSize2D<T, U>

pub fn is_positive(&self) -> bool

impl<T, U> TypedSize2D<T, U> where
    T: PartialOrd<T>, 

pub fn greater_than(&self, other: &TypedSize2D<T, U>) -> BoolVector2D

pub fn lower_than(&self, other: &TypedSize2D<T, U>) -> BoolVector2D

impl<T, U> TypedSize2D<T, U> where
    T: PartialEq<T>, 

pub fn equal(&self, other: &TypedSize2D<T, U>) -> BoolVector2D

pub fn not_equal(&self, other: &TypedSize2D<T, U>) -> BoolVector2D

impl<T, U> TypedSize2D<T, U> where
    T: Float

pub fn min(self, other: TypedSize2D<T, U>) -> TypedSize2D<T, U>

pub fn max(self, other: TypedSize2D<T, U>) -> TypedSize2D<T, U>

pub fn clamp(
    &self,
    start: TypedSize2D<T, U>,
    end: TypedSize2D<T, U>
) -> TypedSize2D<T, U>

Trait Implementations

impl<T, U> Sub<TypedSize2D<T, U>> for TypedSize2D<T, U> where
    T: Copy + Sub<T, Output = T>, 

type Output = TypedSize2D<T, U>

The resulting type after applying the - operator.

impl<T, U> PartialEq<TypedSize2D<T, U>> for TypedSize2D<T, U> where
    T: PartialEq<T>, 

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl<T, U> Eq for TypedSize2D<T, U> where
    T: Eq

impl<T, U> Display for TypedSize2D<T, U> where
    T: Display

impl<T, U> Add<TypedSize2D<T, U>> for TypedPoint2D<T, U> where
    T: Copy + Add<T, Output = T>, 

type Output = TypedPoint2D<T, U>

The resulting type after applying the + operator.

impl<T, U> Add<TypedSize2D<T, U>> for TypedSize2D<T, U> where
    T: Copy + Add<T, Output = T>, 

type Output = TypedSize2D<T, U>

The resulting type after applying the + operator.

impl<T, U> Clone for TypedSize2D<T, U> where
    T: Clone

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T, U> Debug for TypedSize2D<T, U> where
    T: Debug

impl<T, U1, U2> Div<TypedScale<T, U1, U2>> for TypedSize2D<T, U2> where
    T: Copy + Div<T, Output = T>, 

type Output = TypedSize2D<T, U1>

The resulting type after applying the / operator.

impl<T, U> Div<T> for TypedSize2D<T, U> where
    T: Copy + Div<T, Output = T>, 

type Output = TypedSize2D<T, U>

The resulting type after applying the / operator.

impl<T, U> Copy for TypedSize2D<T, U> where
    T: Copy

impl<T, U> Hash for TypedSize2D<T, U> where
    T: Hash

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl<T, U> Zero for TypedSize2D<T, U> where
    T: Zero

impl<T, U> From<TypedSize2D<T, U>> for TypedRect<T, U> where
    T: Copy + Zero

impl<T, U> Mul<T> for TypedSize2D<T, U> where
    T: Copy + Mul<T, Output = T>, 

type Output = TypedSize2D<T, U>

The resulting type after applying the * operator.

impl<T, U1, U2> Mul<TypedScale<T, U1, U2>> for TypedSize2D<T, U1> where
    T: Copy + Mul<T, Output = T>, 

type Output = TypedSize2D<T, U2>

The resulting type after applying the * operator.

Auto Trait Implementations

impl<T, U> Send for TypedSize2D<T, U> where
    T: Send,
    U: Send

impl<T, U> Sync for TypedSize2D<T, U> where
    T: Sync,
    U: Sync

Blanket Implementations

impl<T> From for T
[src]

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

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

type Owned = T

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Zero for T where
    T: Zero