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

using PowerUI;


namespace Blaze{
	
	/// <summary>
	/// A node which immediately follows an arc line.
	/// This handles the rendering of the arc itself.
	/// </summary>
	
	public partial class VectorPoint{
		
		/// <summary>Used internally. Renders the line between this point and the next one, if there is one.</summary>
		/// <param name="data">The image to draw to.</param>
		public virtual void RenderLine(CanvasContext context){}
		
	}
	
}