Checkpoint 2

Writingthe code for this wasn't terribly difficult once I figured out
what i needed to do. I didn't quite understand the purpose of each
function in the context of the overall program, which made the scale
function difficult to write at first. When I did get stuck I used the
already existing code as well as the examples in the lab to help me
figure out what I needed to write.
This commit is contained in:
Thomas Naber
2023-08-03 16:41:13 -04:00
parent 8e57a173bb
commit f6cfe7235a
3 changed files with 52 additions and 23 deletions

View File

@@ -21,14 +21,14 @@ test(minimum, [[0, 1, 2, 3]], 0)
test(minimum, [[-10, -20, -30]], -30)
test(bounds, [[0, 1, 2, 3]], [0, 3])
test(bounds, [[-10, -20, -30]], [-30, -10])
test(clamp, [[10, 0, 100]], 10)
test(clamp, [[-10, 0, 100]], 0)
test(clamp, [[104, 0, 100]], 100)
test(ratio, [[5, 0, 10]], 0.5)
test(ratio, [[167, 100, 200]], 0.67)
test(ratio, [[8, 10, 0]], 0.2)
test(ratio, [[4, 10, 20]], 0.0)
test(scale, [[4, 0, 10, 0, 100]], 40)
test(scale, [[180, 120, 240, 0, 100]], 50)
test(clamp, [10, 0, 100], 10)
test(clamp, [-10, 0, 100], 0)
test(clamp, [104, 0, 100], 100)
test(ratio, [5, 0, 10], 0.5)
test(ratio, [167, 100, 200], 0.67)
test(ratio, [8, 10, 0], 0.2)
test(ratio, [4, 10, 20], 0.0)
test(scale, [4, 0, 10, 0, 100], 40)
test(scale, [180, 120, 240, 0, 100], 50)
test(get_x_values, [[[0, 5], [1, 5], [2, 5]]], [0, 1, 2])
test(get_y_values, [[[0, 5], [1, 5], [2, 5]]], [5, 5, 5])