namespace SM.OGL.Mesh { /// /// Represents a mesh that can be a line object. /// public interface ILineMesh { /// /// The width of a line. /// float LineWidth { get; set; } } }