Example #1
0
		public override Draw.Canvas CreateSubcanvas(Geometry2D.Single.Box bounds)
		{
			Canvas result = new Canvas(this.Image as Image);
			this.Root.Add(result.Root);
			return result;
		}
Example #2
0
		Canvas(Image image, Canvas original) :
			base(new Surface(image), image)
		{
			this.Root = original.Root.Copy() as Element.Group;
		}