DrawRecognitionAreaDrawObject.cs 749 B

12345678910111213141516171819202122232425262728293031
  1. using PaintDotNet.Annotation.Enum;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Drawing;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace PaintDotNet.Annotation.DedicatedAnalysis
  9. {
  10. public class DedicatedAnalysisDrawObject : DrawObject
  11. {
  12. protected DedicatedAnalysisDrawObject(ISurfaceBox surfaceBox)
  13. {
  14. this.objectType = DrawClass.Other;
  15. base.ISurfaceBox = surfaceBox;
  16. base.Initialize();
  17. }
  18. public override DrawObject Clone()
  19. {
  20. throw new NotImplementedException();
  21. }
  22. public override RectangleF GetBoundingBox()
  23. {
  24. throw new NotImplementedException();
  25. }
  26. }
  27. }