Struct font_types::F26Dot6

source ·
pub struct F26Dot6(/* private fields */);
Expand description

32-bit signed fixed point number with 6 bits of fraction.

Implementations§

source§

impl F26Dot6

source

pub const MIN: Self = _

Minimum value.

source

pub const MAX: Self = _

Maximum value.

source

pub const EPSILON: Self = _

This type’s smallest representable value

source

pub const ZERO: Self = _

Representation of 0.0.

source

pub const ONE: Self = _

Representation of 1.0.

source

pub const fn from_bits(bits: i32) -> Self

Creates a new fixed point value from the underlying bit representation.

source

pub const fn to_bits(self) -> i32

Returns the underlying bit representation of the value.

source

pub const fn round(self) -> Self

Returns the nearest integer value.

source

pub const fn abs(self) -> Self

Returns the absolute value of the number.

source

pub const fn floor(self) -> Self

Returns the largest integer less than or equal to the number.

source

pub const fn fract(self) -> Self

Returns the fractional part of the number.

source

pub fn wrapping_add(self, other: Self) -> Self

Wrapping addition.

source

pub const fn saturating_add(self, other: Self) -> Self

Saturating addition.

source

pub const fn wrapping_sub(self, other: Self) -> Self

Wrapping substitution.

source

pub const fn saturating_sub(self, other: Self) -> Self

Saturating substitution.

source

pub const fn to_be_bytes(self) -> [u8; 4]

The representation of this number as a big-endian byte array.

source§

impl F26Dot6

source

pub const fn mul_div(&self, a: Self, b: Self) -> Self

Multiplies self by a and divides the product by b.

source§

impl F26Dot6

source

pub fn from_f64(x: f64) -> Self

Creates a fixed point value from af64.

This operation is lossy; the float will be rounded to the nearest representable value.

source

pub fn to_f64(self) -> f64

Returns the value as an f64.

This operation is lossless: all representable values can be round-tripped.

source§

impl F26Dot6

source

pub const fn from_i32(i: i32) -> Self

Creates a 26.6 fixed point value from a 32 bit integer.

source

pub const fn to_i32(self) -> i32

Converts a 26.6 fixed point value to a 32 bit integer, rounding off the fractional bits.

source

pub fn to_f32(self) -> f32

Converts a 26.6 fixed point value to a single precision floating point value.

This operation is lossy. Use to_f64() for a lossless conversion.

Trait Implementations§

source§

impl Add for F26Dot6

§

type Output = F26Dot6

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl AddAssign for F26Dot6

source§

fn add_assign(&mut self, other: Self)

Performs the += operation. Read more
source§

impl Clone for F26Dot6

source§

fn clone(&self) -> F26Dot6

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 F26Dot6

source§

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

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

impl Default for F26Dot6

source§

fn default() -> F26Dot6

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

impl Display for F26Dot6

source§

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

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

impl Div for F26Dot6

§

type Output = F26Dot6

The resulting type after applying the / operator.
source§

fn div(self, other: Self) -> Self::Output

Performs the / operation. Read more
source§

impl DivAssign for F26Dot6

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl Hash for F26Dot6

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

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

Feeds a slice of this type into the given Hasher. Read more
source§

impl Mul for F26Dot6

§

type Output = F26Dot6

The resulting type after applying the * operator.
source§

fn mul(self, other: Self) -> Self::Output

Performs the * operation. Read more
source§

impl MulAssign for F26Dot6

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl Neg for F26Dot6

§

type Output = F26Dot6

The resulting type after applying the - operator.
source§

fn neg(self) -> Self

Performs the unary - operation. Read more
source§

impl Ord for F26Dot6

source§

fn cmp(&self, other: &F26Dot6) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl PartialEq for F26Dot6

source§

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

source§

fn partial_cmp(&self, other: &F26Dot6) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Sub for F26Dot6

§

type Output = F26Dot6

The resulting type after applying the - operator.
source§

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

Performs the - operation. Read more
source§

impl SubAssign for F26Dot6

source§

fn sub_assign(&mut self, other: Self)

Performs the -= operation. Read more
source§

impl Zeroable for F26Dot6

source§

fn zeroed() -> Self

source§

impl AnyBitPattern for F26Dot6

source§

impl Copy for F26Dot6

source§

impl Eq for F26Dot6

source§

impl NoUninit for F26Dot6

source§

impl StructuralPartialEq for F26Dot6

Auto Trait Implementations§

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> CheckedBitPattern for T
where 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> CloneToUninit for T
where T: Copy,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. 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.