// Copyright (c) Six Labors.
// Licensed under the Six Labors Split License.
namespace SixLabors.Fonts {
///
/// Provides enumeration for the various layout mode of an individual glyph within a body of text.
///
public enum GlyphLayoutMode
{
///
/// Horizontal.
///
Horizontal,
///
/// Vertical.
///
Vertical,
///
/// Rotated 90 degrees clockwise.
///
VerticalRotated
}
}