Transforms

This commit is contained in:
Daniel Flanagan 2021-12-21 09:29:41 -06:00
parent 1cd256a12a
commit 421b3b7e05
Signed by: lytedev
GPG Key ID: 5B2020A0F9921EF4
1 changed files with 3 additions and 0 deletions

View File

@ -7,6 +7,9 @@ type
Vec3Pair = array[2, Vec3]
DumbDistTable = TableRef[int, Vec3Pair]
iterator permuteTransforms(p: Vec3): seq[Vec3] =
# TODO:
proc dumbDist(a: Vec3, b: Vec3): int =
result = abs(a[0]-b[0]) + abs(a[1]-b[1]) + abs(a[2]-b[2])
# echo &"dumbDist: {result} from {a} to {b}"