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

using System;


namespace Blaze{
	
	/// <summary>Used to transform one vector and, in the case of InfiniText, combine it with another.</summary>
	
	public class VectorTransform{
		
		public float Dx;
		public float Dy;
		public float Scale01;
		public float Scale10;
		public int Index;
		public float XScale=1f;
		public float YScale=1f;
		public VectorTransform Next;
		
		
		public VectorTransform(){}
		
		public VectorTransform(int index){
			
			Index=index;
			
		}
		
		
		
	}

}