Struct font_types::Fixed

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

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

Implementations§

source§

impl Fixed

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 Fixed

source

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

Multiplies self by a and divides the product by b.

source§

impl Fixed

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 Fixed

source

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

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

source

pub const fn to_i32(self) -> i32

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

source

pub const fn to_f26dot6(self) -> F26Dot6

Converts a 16.16 to 26.6 fixed point value.

source

pub const fn to_f2dot14(self) -> F2Dot14

Converts a 16.16 to 2.14 fixed point value.

This specific conversion is defined by the spec: https://learn.microsoft.com/en-us/typography/opentype/spec/otvaroverview#coordinate-scales-and-normalization

“5. Convert the final, normalized 16.16 coordinate value to 2.14 by this method: add 0x00000002, and sign-extend shift to the right by 2.”

source

pub fn to_f32(self) -> f32

Converts a 16.16 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 Fixed

§

type Output = Fixed

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl AddAssign for Fixed

source§

fn add_assign(&mut self, other: Self)

Performs the += operation. Read more
source§

impl Clone for Fixed

source§

fn clone(&self) -> Fixed

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 Fixed

source§

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

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

impl Default for Fixed

source§

fn default() -> Fixed

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

impl Display for Fixed

source§

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

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

impl Div for Fixed

§

type Output = Fixed

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl DivAssign for Fixed

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl From<i32> for Fixed

source§

fn from(value: i32) -> Self

Converts to this type from the input type.
source§

impl Hash for Fixed

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 Fixed

§

type Output = Fixed

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl MulAssign for Fixed

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl Neg for Fixed

§

type Output = Fixed

The resulting type after applying the - operator.
source§

fn neg(self) -> Self

Performs the unary - operation. Read more
source§

impl Ord for Fixed

source§

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

source§

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

source§

fn partial_cmp(&self, other: &Fixed) -> 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 Scalar for Fixed

§

type Raw = [u8; 4]

The raw byte representation of this type.
source§

fn to_raw(self) -> [u8; 4]

Encode this type as raw big-endian bytes
source§

fn from_raw(raw: [u8; 4]) -> Self

Create an instance of this type from raw big-endian bytes
source§

fn read(slice: &[u8]) -> Option<Self>

Attempt to read a scalar from a slice. Read more
source§

impl Sub for Fixed

§

type Output = Fixed

The resulting type after applying the - operator.
source§

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

Performs the - operation. Read more
source§

impl SubAssign for Fixed

source§

fn sub_assign(&mut self, other: Self)

Performs the -= operation. Read more
source§

impl Zeroable for Fixed

source§

fn zeroed() -> Self

source§

impl AnyBitPattern for Fixed

source§

impl Copy for Fixed

source§

impl Eq for Fixed

source§

impl NoUninit for Fixed

source§

impl StructuralPartialEq for Fixed

Auto Trait Implementations§

§

impl Freeze for Fixed

§

impl RefUnwindSafe for Fixed

§

impl Send for Fixed

§

impl Sync for Fixed

§

impl Unpin for Fixed

§

impl UnwindSafe for Fixed

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> FixedSize for T
where T: Scalar,

source§

const RAW_BYTE_LEN: usize = const RAW_BYTE_LEN: usize = std::mem::size_of::<T::Raw>();

The raw size of this type, in bytes. 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.