More cleanup

This commit is contained in:
be5invis 2022-07-17 00:54:59 -07:00
parent e61edd0db9
commit 4a418cd473
58 changed files with 198 additions and 195 deletions

View file

@ -1,4 +1,4 @@
class Point {
export class Point {
constructor(type, x, y) {
this.type = type;
this.x = x;
@ -64,4 +64,3 @@ Point.Type = {
CubicEnd: 2,
Quadratic: 3
};
export { Point };