EarserTool.cs 515 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Windows.Media;
  5. namespace PixiEditorDotNetCore3.Models.Tools.Tools
  6. {
  7. public class EarserTool : Tool
  8. {
  9. public override ToolType ToolType => ToolType.Earser;
  10. public override BitmapPixelChanges Use(Layer layer, Coordinates startingCoords, Color color, int toolSize)
  11. {
  12. PenTool pen = new PenTool();
  13. return pen.Draw(startingCoords, Colors.Transparent, toolSize);
  14. }
  15. }
  16. }