aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/generativeFill/generativeFillUtils/GenerativeFillMathHelpers.ts
blob: 6da8c3da0a7810ae021291eed859a0a0b88405fb (plain)
1
2
3
4
5
6
import { Point } from './generativeFillInterfaces';

export class GenerativeFillMathHelpers {
    static distanceBetween = (p1: Point, p2: Point) => Math.sqrt((p2.x - p1.x) ** 2 + (p2.y - p1.y) ** 2);
    static angleBetween = (p1: Point, p2: Point) => Math.atan2(p2.x - p1.x, p2.y - p1.y);
}