//--------------------------------------
//			   PowerUI
//
//		For documentation or 
//	if you have any issues, visit
//		powerUI.kulestar.com
//
//	Copyright © 2013 Kulestar Ltd
//		  www.kulestar.com
//--------------------------------------


namespace Svg{
	
	public enum CoordinateUnits{
		
		/// <summary>
		/// Indicates that the coordinate system of the owner element is to be used.
		/// </summary>
		ObjectBoundingBox,

		/// <summary>
		/// Indicates that the coordinate system of the entire document is to be used.
		/// </summary>
		UserSpaceOnUse
	}
	
}