// Copyright (c) Six Labors.
// Licensed under the Six Labors Split License.
namespace SixLabors.Fonts.Rendering {
///
/// Path verb identifying the command type.
///
internal enum PathVerb : byte
{
///
/// Moves the current point without drawing.
///
MoveTo = 0,
///
/// Draws a straight line from the current point to the end point.
///
LineTo = 1,
///
/// Draws a quadratic Bézier from the current point to the end point using a single control point.
///
QuadraticTo = 2,
///
/// Draws a cubic Bézier from the current point to the end point using two control points.
///
CubicTo = 3,
///
/// Draws an elliptical arc from the current point to the end point.
///
ArcTo = 4,
///
/// Closes the current subpath.
///
ClosePath = 5,
}
}