work in progress

This commit is contained in:
2025-12-18 09:23:54 +01:00
parent 7daa295db1
commit 2000b51159
2 changed files with 9 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
# tiny class to hold a 2x2 matrix
1# tiny class to hold a 2x2 matrix
class Matrix2x2:
def __init__(self, m00, m01, m10, m11):
self.m00 = m00