pub struct GlueRatio(pub f32);
Expand description
Ratio by which glue should shrink or stretch.
This is one of the few (only?) places in TeX where a floating point number is used. In general TeX uses fixed point integers to ensure that the results are the same on every computer/CPU. But the exact semantics of the glue ratio don’t affect the output, so using a float is okay.
Described in TeX.2021.109.
Tuple Fields§
§0: f32
Trait Implementations§
impl Eq for GlueRatio
impl StructuralPartialEq for GlueRatio
Auto Trait Implementations§
impl Freeze for GlueRatio
impl RefUnwindSafe for GlueRatio
impl Send for GlueRatio
impl Sync for GlueRatio
impl Unpin for GlueRatio
impl UnwindSafe for GlueRatio
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