# -----------------------------------------+ # Your name | # CSCI 107, Assignment 5 | # Last Updated: ??, 2023 | # -----------------------------------------| # Brief description of assignment. | # -----------------------------------------+ def calculate_distance(octant1, x1, y1, z1, octant2, x2, y2, z2): pass # -----------------------------------------+ # test_suite (no parameters) | # -----------------------------------------+ # Determine the distance between (2,3,4) in| # Octant 1 with that same point in each | # of the eight octants. | # -----------------------------------------+ def test_suite(): calculate_distance(1, 2, 3, 4, 1, 2, 3, 4) calculate_distance(1, 2, 3, 4, 2, 2, 3, 4) calculate_distance(1, 2, 3, 4, 3, 2, 3, 4) calculate_distance(1, 2, 3, 4, 4, 2, 3, 4) calculate_distance(1, 2, 3, 4, 5, 2, 3, 4) calculate_distance(1, 2, 3, 4, 6, 2, 3, 4) calculate_distance(1, 2, 3, 4, 7, 2, 3, 4) calculate_distance(1, 2, 3, 4, 8, 2, 3, 4) # -----------------------------------------+ test_suite()