using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Svg
{
///
/// Defines the various cordinate systems that a gradient server may use.
///
public enum SvgGradientUnit
{
///
/// Indicates that the coordinate system of the entire document is to be used.
///
UserSpaceOnUse,
///
/// Indicates that the coordinate system of the element using the gradient is to be used.
///
ObjectBoundingBox
}
}