Files
raytracing/tests/test_vector.py
2019-04-01 16:02:59 +04:00

8 lines
98 B
Python

from vector import Vector
def test_vector():
v = Vector.fromargs(1, 2)
print(v)
print(-v)