chromium/third_party/rust/chromium_crates_io/vendor/read-fonts-0.20.0/src/tables/vmtx.rs

//! The [vmtx (Vertical Metrics)](https://docs.microsoft.com/en-us/typography/opentype/spec/vmtx) table

use super::hmtx;
pub use super::hmtx::LongMetric;

include!("../../generated/generated_vmtx.rs");

impl<'a> Vmtx<'a> {
    /// Returns the advance height for the given glyph identifier.
    pub fn advance(&self, glyph_id: GlyphId) -> Option<u16> {
        hmtx::advance(self.v_metrics(), glyph_id)
    }

    /// Returns the top side bearing for the given glyph identifier.
    pub fn side_bearing(&self, glyph_id: GlyphId) -> Option<i16> {
        hmtx::side_bearing(self.v_metrics(), self.top_side_bearings(), glyph_id)
    }
}