adding base matrix management
Build / build (push) Successful in 1m33s
Test / build (push) Successful in 10m31s

This commit is contained in:
2026-05-11 01:48:13 +02:00
parent 9d20363ae8
commit 769009ad5e
8 changed files with 145 additions and 11 deletions
+1 -1
View File
@@ -136,7 +136,7 @@ pub const Value = union(Type) {
return switch (self.*) {
.Structure => |*s| s.values,
.Array => |*a| a.values,
.Vector, .Matrix => |v| v,
.Vector => |v| v,
else => null,
};
}