Skip to content

Commit

Permalink
fully test solver
Browse files Browse the repository at this point in the history
  • Loading branch information
yxlao committed Sep 23, 2023
1 parent c429929 commit 321749b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions test/test_solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ def test_point_plane_distance_three_points():
plane_points = np.array([[1, 0, 0], [0, 1, 0], [0, 0, 1]])
ref_dist = 1 / np.sqrt(3)
dist = ct.solver.point_plane_distance_three_points(point, plane_points)
np.testing.assert_allclose(dist, ref_dist)

0 comments on commit 321749b

Please sign in to comment.