aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/imageEditor/imageToolUtils/BrushHandler.ts
blob: 7139bebc3ff44c6d32bb550714761fd12c2db19c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import { GenerativeFillMathHelpers } from '../imageEditorUtils/GenerativeFillMathHelpers';
import { eraserColor } from '../imageEditorUtils/imageEditorConstants';
import { Point } from '../imageEditorUtils/imageEditorInterfaces';
import { points } from '@turf/turf';

export enum BrushType {
    GEN_FILL,
    CUT,
}

export class BrushHandler {
    static brushCircleOverlay = (x: number, y: number, brushRadius: number, ctx: CanvasRenderingContext2D, fillColor: string /* , erase: boolean */) => {
        ctx.globalCompositeOperation = 'destination-out';
        ctx.fillStyle = fillColor;
        ctx.shadowColor = eraserColor;
        ctx.shadowBlur = 5;
        ctx.beginPath();
        ctx.arc(x, y, brushRadius, 0, 2 * Math.PI);
        ctx.fill();
        ctx.closePath();
    };

    static createBrushPathOverlay = (startPoint: Point, endPoint: Point, brushRadius: number, ctx: CanvasRenderingContext2D, fillColor: string, brushType: BrushType) => {
        const dist = GenerativeFillMathHelpers.distanceBetween(startPoint, endPoint);
        const pts: Point[] = [];
        for (let i = 0; i < dist; i += 5) {
            const s = i / dist;
            const x = startPoint.x * (1 - s) + endPoint.x * s;
            const y = startPoint.y * (1 - s) + endPoint.y * s;
            pts.push({ x: startPoint.x, y: startPoint.y });
            BrushHandler.brushCircleOverlay(x, y, brushRadius, ctx, fillColor);
        }
        return pts;
    };
}