using System.Collections.Generic;
namespace Tango.Pulse
{
///
/// Represents a twn file brush segment.
///
///
/// The “Brush Segment” structure supports
/// both solid and gradient segments.
/// Solid segments are defined using a “Brush
/// Segment” with a single “Brush Stop” with
/// zero offset.
///
public class TwnSegment
{
///
/// Required thread length in centimeters.
///
public float Length { get; set; }
///
/// Array of brush stops.
///
public List BrushStops { get; set; }
///
/// Initializes a new instance of the class.
///
public TwnSegment()
{
BrushStops = new List();
}
}
}