Struct font_types::Fixed

source ·
pub struct Fixed(_);
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.”

Trait Implementations§

source§

impl Add<Fixed> 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<Fixed> 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<Fixed> 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<Fixed> for Fixed

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl Mul<Fixed> 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<Fixed> 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) -> Selfwhere Self: Sized,

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

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

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

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

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

impl PartialEq<Fixed> 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<Fixed> 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§

impl Sub<Fixed> 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<Fixed> for Fixed

source§

fn sub_assign(&mut self, other: Self)

Performs the -= operation. Read more
source§

impl Copy for Fixed

source§

impl Eq for Fixed

source§

impl StructuralEq for Fixed

source§

impl StructuralPartialEq for Fixed

Auto Trait Implementations§

§

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 Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · 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 Twhere 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 Twhere 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 Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.