9 lines
145 B
Python
9 lines
145 B
Python
from matrixmania import rot_2D
|
|
|
|
def test_rot_2D():
|
|
angle = 90
|
|
result = rot_2D(angle)
|
|
print(f"Angle:{angle} Rot-Matrix:{result}")
|
|
|
|
|