SvgGradientUnit.cs 614 Bytes
Newer Older
davescriven's avatar
davescriven committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Svg
{
    /// <summary>
    /// Defines the various cordinate systems that a gradient server may use.
    /// </summary>
    public enum SvgGradientUnit
    {
        /// <summary>
        /// Indicates that the coordinate system of the entire document is to be used.
        /// </summary>
        UserSpaceOnUse,
        /// <summary>
        /// Indicates that the coordinate system of the element using the gradient is to be used.
        /// </summary>
        ObjectBoundingBox
    }
}