Blame mono/Assistance/AssistantGrid.cs

cfceb0
using System;
cfceb0
cfceb0
namespace Assistance {
cfceb0
	public class AssistantGrid: Assistant {
cfceb0
		public ActivePoint center;
cfceb0
726e8a
		public AssistantGrid(Document document, Point center): base(document) {
cfceb0
			this.center = new ActivePoint(this, ActivePoint.Type.CircleCross, center);
cfceb0
		}
cfceb0
cfceb0
		public override void draw(System.Drawing.Graphics g) {
cfceb0
			/*
cfceb0
			foreach(Assistant assistant in canvas.assistants)
cfceb0
				foreach(Point p in assistant.getGridPoints(center.position))
cfceb0
					foreach(Assistant a in canvas.assistants)
cfceb0
						if (a != assistant)
cfceb0
							a.drawGuidlines(g, p);
cfceb0
			*/
cfceb0
		}
cfceb0
	}
cfceb0
}
cfceb0