diagonal rungs are drawing. just need tranches.

This commit is contained in:
Tim
2024-05-04 23:08:59 -04:00
parent 95fd55e560
commit 49b41450c3
6 changed files with 59 additions and 30 deletions

View File

@@ -41,6 +41,11 @@ export function vectorEquals(a, b) {
}
export function vectorNeg(a) {
return a.map((v)=>-v)
}
export function vectorAdd(a, b) {
const result = []
const scalarB = b.length === undefined