blob: 97e03ff209d318e8947fb50c27d0a25448fef824 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import { Point } from './generativeFillInterfaces';
export class GenerativeFillMathHelpers {
static distanceBetween = (p1: Point, p2: Point) => {
return Math.sqrt(Math.pow(p2.x - p1.x, 2) + Math.pow(p2.y - p1.y, 2));
};
static angleBetween = (p1: Point, p2: Point) => {
return Math.atan2(p2.x - p1.x, p2.y - p1.y);
};
}
|