File tree 1 file changed +14
-5
lines changed
1 file changed +14
-5
lines changed Original file line number Diff line number Diff line change
1
+ from hypothesis import given
2
+
1
3
from ppb import BaseSprite
2
4
from ppb import Vector
3
5
from ppb .camera import Camera
6
+ from ppb .testutils import integer_vectors
7
+
8
+
9
+ ONE_K = 1024
10
+ ONE_M = ONE_K * ONE_K
4
11
5
12
6
- def test_camera_viewport ():
7
- cam = Camera (viewport = (0 , 0 , 800 , 600 ))
8
- assert cam .point_in_viewport (Vector (400 , 400 ))
9
- assert not cam .point_in_viewport (Vector (900 , 600 ))
10
- assert cam .viewport_offset == Vector (400 , 300 )
13
+ @given (diagonal = integer_vectors (min_value = 2 , max_value = ONE_M ))
14
+ def test_camera_viewport (diagonal : Vector ):
15
+ x , y = diagonal
16
+ cam = Camera (viewport = (0 , 0 , x , y ))
17
+ assert cam .point_in_viewport (0.5 * diagonal )
18
+ assert not cam .point_in_viewport (diagonal + (100 , 100 ))
19
+ assert cam .viewport_offset == 0.5 * diagonal
11
20
12
21
13
22
def test_camera_point_in_viewport_not_at_origin ():
You can’t perform that action at this time.
0 commit comments