Struct read_fonts::tables::glyf::SimpleGlyphFlags
source · pub struct SimpleGlyphFlags { /* private fields */ }
Expand description
Flags used in SimpleGlyph
Implementations§
source§impl SimpleGlyphFlags
impl SimpleGlyphFlags
sourcepub const ON_CURVE_POINT: Self = _
pub const ON_CURVE_POINT: Self = _
Bit 0: If set, the point is on the curve; otherwise, it is off the curve.
sourcepub const X_SHORT_VECTOR: Self = _
pub const X_SHORT_VECTOR: Self = _
Bit 1: If set, the corresponding x-coordinate is 1 byte long, and the sign is determined by the X_IS_SAME_OR_POSITIVE_X_SHORT_VECTOR flag. If not set, its interpretation depends on the X_IS_SAME_OR_POSITIVE_X_SHORT_VECTOR flag: If that other flag is set, the x-coordinate is the same as the previous x-coordinate, and no element is added to the xCoordinates array. If both flags are not set, the corresponding element in the xCoordinates array is two bytes and interpreted as a signed integer. See the description of the X_IS_SAME_OR_POSITIVE_X_SHORT_VECTOR flag for additional information.
sourcepub const Y_SHORT_VECTOR: Self = _
pub const Y_SHORT_VECTOR: Self = _
Bit 2: If set, the corresponding y-coordinate is 1 byte long, and the sign is determined by the Y_IS_SAME_OR_POSITIVE_Y_SHORT_VECTOR flag. If not set, its interpretation depends on the Y_IS_SAME_OR_POSITIVE_Y_SHORT_VECTOR flag: If that other flag is set, the y-coordinate is the same as the previous y-coordinate, and no element is added to the yCoordinates array. If both flags are not set, the corresponding element in the yCoordinates array is two bytes and interpreted as a signed integer. See the description of the Y_IS_SAME_OR_POSITIVE_Y_SHORT_VECTOR flag for additional information.
sourcepub const REPEAT_FLAG: Self = _
pub const REPEAT_FLAG: Self = _
Bit 3: If set, the next byte (read as unsigned) specifies the number of additional times this flag byte is to be repeated in the logical flags array — that is, the number of additional logical flag entries inserted after this entry. (In the expanded logical array, this bit is ignored.) In this way, the number of flags listed can be smaller than the number of points in the glyph description.
sourcepub const X_IS_SAME_OR_POSITIVE_X_SHORT_VECTOR: Self = _
pub const X_IS_SAME_OR_POSITIVE_X_SHORT_VECTOR: Self = _
Bit 4: This flag has two meanings, depending on how the X_SHORT_VECTOR flag is set. If X_SHORT_VECTOR is set, this bit describes the sign of the value, with 1 equalling positive and 0 negative. If X_SHORT_VECTOR is not set and this bit is set, then the current x-coordinate is the same as the previous x-coordinate. If X_SHORT_VECTOR is not set and this bit is also not set, the current x-coordinate is a signed 16-bit delta vector.
sourcepub const Y_IS_SAME_OR_POSITIVE_Y_SHORT_VECTOR: Self = _
pub const Y_IS_SAME_OR_POSITIVE_Y_SHORT_VECTOR: Self = _
Bit 5: This flag has two meanings, depending on how the Y_SHORT_VECTOR flag is set. If Y_SHORT_VECTOR is set, this bit describes the sign of the value, with 1 equalling positive and 0 negative. If Y_SHORT_VECTOR is not set and this bit is set, then the current y-coordinate is the same as the previous y-coordinate. If Y_SHORT_VECTOR is not set and this bit is also not set, the current y-coordinate is a signed 16-bit delta vector.
sourcepub const OVERLAP_SIMPLE: Self = _
pub const OVERLAP_SIMPLE: Self = _
Bit 6: If set, contours in the glyph description may overlap. Use of this flag is not required in OpenType — that is, it is valid to have contours overlap without having this flag set. It may affect behaviors in some platforms, however. (See the discussion of “Overlapping contours” in Apple’s specification for details regarding behavior in Apple platforms.) When used, it must be set on the first flag byte for the glyph. See additional details below.
source§impl SimpleGlyphFlags
impl SimpleGlyphFlags
sourcepub const fn from_bits(bits: u8) -> Option<Self>
pub const fn from_bits(bits: u8) -> Option<Self>
Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
sourcepub const fn from_bits_truncate(bits: u8) -> Self
pub const fn from_bits_truncate(bits: u8) -> Self
Convert from underlying bit representation, dropping any bits that do not correspond to flags.
sourcepub const fn intersects(&self, other: Self) -> bool
pub const fn intersects(&self, other: Self) -> bool
Returns true
if there are flags common to both self
and other
.
sourcepub const fn contains(&self, other: Self) -> bool
pub const fn contains(&self, other: Self) -> bool
Returns true
if all of the flags in other
are contained within self
.
sourcepub const fn intersection(self, other: Self) -> Self
pub const fn intersection(self, other: Self) -> Self
Returns the intersection between the flags in self
and
other
.
Specifically, the returned set contains only the flags which are
present in both self
and other
.
This is equivalent to using the &
operator (e.g.
ops::BitAnd
), as in flags & other
.
sourcepub const fn union(self, other: Self) -> Self
pub const fn union(self, other: Self) -> Self
Returns the union of between the flags in self
and other
.
Specifically, the returned set contains all flags which are
present in either self
or other
, including any which are
present in both.
This is equivalent to using the |
operator (e.g.
ops::BitOr
), as in flags | other
.
sourcepub const fn difference(self, other: Self) -> Self
pub const fn difference(self, other: Self) -> Self
Returns the difference between the flags in self
and other
.
Specifically, the returned set contains all flags present in
self
, except for the ones present in other
.
It is also conceptually equivalent to the “bit-clear” operation:
flags & !other
(and this syntax is also supported).
This is equivalent to using the -
operator (e.g.
ops::Sub
), as in flags - other
.
Trait Implementations§
source§impl Binary for SimpleGlyphFlags
impl Binary for SimpleGlyphFlags
source§impl BitAnd for SimpleGlyphFlags
impl BitAnd for SimpleGlyphFlags
source§impl BitAndAssign for SimpleGlyphFlags
impl BitAndAssign for SimpleGlyphFlags
source§fn bitand_assign(&mut self, other: Self)
fn bitand_assign(&mut self, other: Self)
Disables all flags disabled in the set.
source§impl BitOr for SimpleGlyphFlags
impl BitOr for SimpleGlyphFlags
source§fn bitor(self, other: SimpleGlyphFlags) -> Self
fn bitor(self, other: SimpleGlyphFlags) -> Self
Returns the union of the two sets of flags.
source§type Output = SimpleGlyphFlags
type Output = SimpleGlyphFlags
|
operator.source§impl BitOrAssign for SimpleGlyphFlags
impl BitOrAssign for SimpleGlyphFlags
source§fn bitor_assign(&mut self, other: Self)
fn bitor_assign(&mut self, other: Self)
Adds the set of flags.
source§impl BitXor for SimpleGlyphFlags
impl BitXor for SimpleGlyphFlags
source§impl BitXorAssign for SimpleGlyphFlags
impl BitXorAssign for SimpleGlyphFlags
source§fn bitxor_assign(&mut self, other: Self)
fn bitxor_assign(&mut self, other: Self)
Toggles the set of flags.
source§impl Clone for SimpleGlyphFlags
impl Clone for SimpleGlyphFlags
source§fn clone(&self) -> SimpleGlyphFlags
fn clone(&self) -> SimpleGlyphFlags
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for SimpleGlyphFlags
impl Debug for SimpleGlyphFlags
source§impl Default for SimpleGlyphFlags
impl Default for SimpleGlyphFlags
source§fn default() -> SimpleGlyphFlags
fn default() -> SimpleGlyphFlags
source§impl<'a> From<SimpleGlyphFlags> for FieldType<'a>
impl<'a> From<SimpleGlyphFlags> for FieldType<'a>
source§fn from(src: SimpleGlyphFlags) -> FieldType<'a>
fn from(src: SimpleGlyphFlags) -> FieldType<'a>
source§impl Hash for SimpleGlyphFlags
impl Hash for SimpleGlyphFlags
source§impl LowerHex for SimpleGlyphFlags
impl LowerHex for SimpleGlyphFlags
source§impl Not for SimpleGlyphFlags
impl Not for SimpleGlyphFlags
source§impl Octal for SimpleGlyphFlags
impl Octal for SimpleGlyphFlags
source§impl Ord for SimpleGlyphFlags
impl Ord for SimpleGlyphFlags
source§fn cmp(&self, other: &SimpleGlyphFlags) -> Ordering
fn cmp(&self, other: &SimpleGlyphFlags) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
source§impl PartialEq for SimpleGlyphFlags
impl PartialEq for SimpleGlyphFlags
source§impl PartialOrd for SimpleGlyphFlags
impl PartialOrd for SimpleGlyphFlags
source§impl Scalar for SimpleGlyphFlags
impl Scalar for SimpleGlyphFlags
source§impl Sub for SimpleGlyphFlags
impl Sub for SimpleGlyphFlags
source§impl SubAssign for SimpleGlyphFlags
impl SubAssign for SimpleGlyphFlags
source§fn sub_assign(&mut self, other: Self)
fn sub_assign(&mut self, other: Self)
Disables all flags enabled in the set.
source§impl UpperHex for SimpleGlyphFlags
impl UpperHex for SimpleGlyphFlags
impl AnyBitPattern for SimpleGlyphFlags
impl Copy for SimpleGlyphFlags
impl Eq for SimpleGlyphFlags
impl StructuralPartialEq for SimpleGlyphFlags
Auto Trait Implementations§
impl Freeze for SimpleGlyphFlags
impl RefUnwindSafe for SimpleGlyphFlags
impl Send for SimpleGlyphFlags
impl Sync for SimpleGlyphFlags
impl Unpin for SimpleGlyphFlags
impl UnwindSafe for SimpleGlyphFlags
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
source§impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
source§type Bits = T
type Bits = T
Self
must have the same layout as the specified Bits
except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern
.source§fn is_valid_bit_pattern(_bits: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
bits
as &Self
.source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)