12345678910111213141516171819202122232425262728293031 |
- using PaintDotNet.Annotation.Enum;
- using System;
- using System.Collections.Generic;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PaintDotNet.Annotation.DedicatedAnalysis
- {
- public class DedicatedAnalysisDrawObject : DrawObject
- {
- protected DedicatedAnalysisDrawObject(ISurfaceBox surfaceBox)
- {
- this.objectType = DrawClass.Other;
- base.ISurfaceBox = surfaceBox;
- base.Initialize();
- }
- public override DrawObject Clone()
- {
- throw new NotImplementedException();
- }
- public override RectangleF GetBoundingBox()
- {
- throw new NotImplementedException();
- }
- }
- }
|