From 757562ede9f8259368589d7df8b32a60d918b799 Mon Sep 17 00:00:00 2001 From: marcelbls Date: Thu, 20 Nov 2025 14:39:41 +0100 Subject: [PATCH] alle tests klappen --- tests/test_matmul.py | 2 +- tests/test_projection.py | 2 +- tests/test_rot2D.py | 2 +- tests/test_rot3D.py | 2 +- tests/test_transpose.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/test_matmul.py b/tests/test_matmul.py index 240618e..9fafbf8 100644 --- a/tests/test_matmul.py +++ b/tests/test_matmul.py @@ -1,4 +1,4 @@ -from matrixmania import matmul +from matrixmania.compute import matmul def test_matmul(): matrix_a = [[3, 4, -1, 4], diff --git a/tests/test_projection.py b/tests/test_projection.py index dfee0a5..c73aa20 100644 --- a/tests/test_projection.py +++ b/tests/test_projection.py @@ -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) diff --git a/tests/test_rot2D.py b/tests/test_rot2D.py index 3b92cca..7ea06f9 100644 --- a/tests/test_rot2D.py +++ b/tests/test_rot2D.py @@ -1,4 +1,4 @@ -from matrixmania import rot_2D +from matrixmania.compute import rot_2D def test_rot_2D(): angle = 90 diff --git a/tests/test_rot3D.py b/tests/test_rot3D.py index 4547361..bfa9f64 100644 --- a/tests/test_rot3D.py +++ b/tests/test_rot3D.py @@ -1,4 +1,4 @@ -from matrixmania import rot_3D +from matrixmania.compute import rot_3D def test_rot_3D(): angle = 90 diff --git a/tests/test_transpose.py b/tests/test_transpose.py index ffb20ee..62a352f 100644 --- a/tests/test_transpose.py +++ b/tests/test_transpose.py @@ -1,4 +1,4 @@ -from matrixmania import transpose +from matrixmania.compute import transpose def test_transpose(): matrix = [