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