pub struct TrackKern {
pub degree: i32,
pub min_point_size: f32,
pub min_kern: f32,
pub max_point_size: f32,
pub max_kern: f32,
}Expand description
One track-kerning curve, retained as its degree and endpoint values.
Fields§
§degree: i32Relative tracking tightness.
min_point_size: f32Minimum point size.
min_kern: f32Adjustment at the minimum point size.
max_point_size: f32Maximum point size.
max_kern: f32Adjustment at the maximum point size.
Trait Implementations§
impl Copy for TrackKern
impl StructuralPartialEq for TrackKern
Auto Trait Implementations§
impl Freeze for TrackKern
impl RefUnwindSafe for TrackKern
impl Send for TrackKern
impl Sync for TrackKern
impl Unpin for TrackKern
impl UnsafeUnpin for TrackKern
impl UnwindSafe for TrackKern
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more