restores code editor

This commit is contained in:
Steve Ruiz 2021-06-23 23:32:21 +01:00
parent badda0bb1c
commit 059d704404
23 changed files with 1944 additions and 129 deletions

View file

@ -8,6 +8,9 @@ export interface Point {
y: number
}
/**
* ## Vector
*/
export default class Vector {
x = 0
y = 0