git.s-ol.nu forks/glm-zig / 5bd607b
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
22 const testing = std.testing;
33
44 pub fn Matrix(comptime N: usize) type {
5 return struct {
5 return packed struct {
66 const Self = @This();
77 pub const Scalar = f32;
88