Remove Vec2 and other aliases from std::math.

This commit is contained in:
Christoffer Lerno
2025-03-03 18:13:39 +01:00
parent 0925010c07
commit cc94199131
6 changed files with 82 additions and 99 deletions

View File

@@ -117,6 +117,6 @@ fn void test_mat2_inverse()
fn void test_vec3()
{
Vec3 cross = (Vec3){2,3,4}.cross({5,6,7});
double[<3>] cross = (double[<3>]){2,3,4}.cross({5,6,7});
assert(cross == {-3,6,-3});
}