Skip to content

Commit ff4b3aa

Browse files
committed
tests/camera: Roundtrip through viewport and frame coordinates
1 parent d9de8ed commit ff4b3aa

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

tests/test_camera.py

+7
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,13 @@ def test_camera_point_in_viewport_not_at_origin():
3535
assert not cam.point_in_viewport(Vector(901, 600))
3636

3737

38+
@given(cam=cameras(), v=vectors())
39+
def test_camera_roundtrip_frame_viewport(cam: Camera, v: Vector):
40+
"""Check that Camera.translate_to_{frame,viewport} are inverse of one another."""
41+
assert cam.translate_to_frame(cam.translate_to_viewport(v)).isclose(v)
42+
assert cam.translate_to_viewport(cam.translate_to_frame(v)).isclose(v)
43+
44+
3845
def test_camera_translate_to_frame():
3946
cam = Camera(viewport=(0, 0, 800, 600), pixel_ratio=80)
4047
assert cam.position == Vector(0, 0)

0 commit comments

Comments
 (0)