using System;
using System.Collections.Generic;
using System.Text;
namespace OpenTK.Graphics
{
///
/// Defines available directions for text layout.
///
public enum TextDirection
{
/// The text is layed out from left to right.
LeftToRight,
/// The text is layed out from right to left.
RightToLeft,
/// The text is layed out vertically.
Vertical
}
}