make Matrix packed struct
s-ol
2 years ago
1 changed file(s) with
1 addition(s)
and
1 deletion(s)
.
Raw diff
Collapse all
Expand all
+1
-1
src/matrix.zig
less
more
2
2
const testing = std.testing;
3
3
4
4
pub fn Matrix(comptime N: usize) type {
5
return struct {
5
return packed struct {
6
6
const Self = @This();
7
7
pub const Scalar = f32;
8
8