Skip to main content

FontScaleCurve

Struct FontScaleCurve 

Source
pub struct FontScaleCurve { /* private fields */ }
Expand description

The sp → dp conversion the platform performs, sampled from the platform.

With no knots this is sp * scale. With knots it is the piecewise-linear function through them, extended past both ends by the ratio of the knot on that end — which is how the platform extends its own table, so a size below the first knot scales by the plain setting and one above the last keeps the last knot’s ratio.

Implementations§

Source§

impl FontScaleCurve

Source

pub const fn linear(scale: f32) -> Self

The plain multiplier: what every platform without a conversion table does, and what Android itself did before it had one.

Source

pub fn from_samples(scale: f32, samples: &[(f32, f32)]) -> Self

A curve through samples, which are (sp, dp) pairs read from the platform in ascending sp order.

Samples that lie on the straight line between their neighbours are dropped, so a densely sampled table comes back as the handful of points that actually bend. Anything the platform could not have produced — an empty or unsorted set, a non-finite or non-positive value, or more bends than MAX_FONT_SCALE_KNOTS — is refused, and the caller gets the multiplier rather than a curve nobody measured.

Source

pub fn scale(self) -> f32

The setting itself — what the user chose, whatever the table then does with an individual size. This is the number to report, not the number to multiply by.

Source

pub fn is_linear(self) -> bool

Whether this is the plain multiplier, with no table behind it.

Source

pub fn is_identity(self) -> bool

Whether resolving an Sp through this curve changes nothing at all.

Asked of the conversion and not of the representation: a platform that hands back a table while the setting sits at 1.0 hands back a table whose every knot maps a size to itself, and that is still nothing to do.

Source

pub fn knots(self) -> [(f32, f32); 12]

The knots, ascending by sp. Empty for a linear curve.

Source

pub fn knot_count(self) -> usize

How many of FontScaleCurve::knots are used.

Source

pub fn fingerprint(self) -> u32

A cheap identity for cache keys: two curves that convert identically share it, and one that does not is overwhelmingly unlikely to.

Source

pub fn sp_to_dp(self, sp: f32) -> f32

A size in scale-independent pixels, in dp.

This is FontScaleConverterImpl.convertSpToDp: the sign is carried separately, an exact hit on a knot returns that knot, a size outside the table scales by the ratio of the nearest end, and everything between two knots is interpolated.

Trait Implementations§

Source§

impl Clone for FontScaleCurve

Source§

fn clone(&self) -> FontScaleCurve

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for FontScaleCurve

Source§

impl Debug for FontScaleCurve

Source§

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

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

impl Default for FontScaleCurve

Source§

fn default() -> Self

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

impl PartialEq for FontScaleCurve

Source§

fn eq(&self, other: &FontScaleCurve) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

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

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for FontScaleCurve

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

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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,

Source§

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>,

Source§

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>,

Source§

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.