Enhance aspect ratio tools | Rectangle, Diamond, Ellipses (#2439)

Co-authored-by: dwelle <luzar.david@gmail.com>
This commit is contained in:
João Forja
2020-12-06 22:39:31 +00:00
committed by GitHub
parent 4c90ea5667
commit aa221837fc
11 changed files with 488 additions and 9492 deletions

View File

@ -17,6 +17,12 @@ export const rotate = (
(x1 - x2) * Math.sin(angle) + (y1 - y2) * Math.cos(angle) + y2,
];
export const rotatePoint = (
point: Point,
center: Point,
angle: number,
): [number, number] => rotate(point[0], point[1], center[0], center[1], angle);
export const adjustXYWithRotation = (
sides: {
n?: boolean;