Math is hard

This commit is contained in:
Lani Aung
2021-11-20 20:43:36 -07:00
parent 4060f3c69d
commit 720b387dd3
20 changed files with 1010 additions and 63 deletions
+1 -2
View File
@@ -3,7 +3,7 @@ export interface Playset {
readonly height: number
readonly width: number
readonly cels: Cel[]
readonly enabledSets: boolean[]
readonly sets: boolean[]
}
export interface Cel {
@@ -11,7 +11,6 @@ export interface Cel {
readonly fix: number
readonly initialPositions: Coordinate[]
readonly offset: Coordinate
readonly sets: boolean[]
currentPositions: Coordinate[]
currentFix: number