alle tests klappen

This commit is contained in:
marcelbls 2025-11-20 14:39:41 +01:00
parent a50e9bfb91
commit 757562ede9
5 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
from matrixmania import matmul
from matrixmania.compute import matmul
def test_matmul():
matrix_a = [[3, 4, -1, 4],

View File

@ -1,4 +1,4 @@
from matrixmania import project_ortho
from matrixmania.compute import project_ortho
def test_projection():
point = (1.0, 2.0, 3.0)

View File

@ -1,4 +1,4 @@
from matrixmania import rot_2D
from matrixmania.compute import rot_2D
def test_rot_2D():
angle = 90

View File

@ -1,4 +1,4 @@
from matrixmania import rot_3D
from matrixmania.compute import rot_3D
def test_rot_3D():
angle = 90

View File

@ -1,4 +1,4 @@
from matrixmania import transpose
from matrixmania.compute import transpose
def test_transpose():
matrix = [