From 67eb04635fab1a571c6a9ce6710e986790187714 Mon Sep 17 00:00:00 2001 From: Dank074 Date: Sat, 8 May 2021 18:29:07 -0500 Subject: [PATCH] PointMath cleanup --- src/room/utils/PointMath.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/room/utils/PointMath.ts b/src/room/utils/PointMath.ts index aaa112e2..376204c3 100644 --- a/src/room/utils/PointMath.ts +++ b/src/room/utils/PointMath.ts @@ -7,13 +7,13 @@ export class PointMath return new Point((k.x + _arg_2.x), (k.y + _arg_2.y)); } - public static _Str_15193(k: Point, _arg_2: Point): Point + public static sub(k: Point, _arg_2: Point): Point { return new Point((k.x - _arg_2.x), (k.y - _arg_2.y)); } - public static _Str_6038(k: Point, _arg_2: number): Point + public static mul(k: Point, _arg_2: number): Point { return new Point((k.x * _arg_2), (k.y * _arg_2)); } -} \ No newline at end of file +}