Commit 3e2efeb8 authored by davescriven's avatar davescriven
Browse files

Adding missing project file.

parent 33ccfa70
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Svg
{
/// <summary>
/// Defines the various coordinate units certain SVG elements may use.
/// </summary>
public enum SvgCoordinateUnits
{
/// <summary>
/// Indicates that the coordinate system of the entire document is to be used.
/// </summary>
UserSpaceOnUse,
/// <summary>
/// Indicates that the coordinate system of the owner element is to be used.
/// </summary>
ObjectBoundingBox
}
}
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment