摘要:
typedef float mat4[4][4]; void mat4_set(mat4 m) { for (int y = 0; y < 4; ++y) { for (int x = 0; x < 4; ++x) { m[y][x] = y * 4 + x; } } } template<type 阅读全文
posted @ 2022-06-19 13:05
中華大帝
阅读(171)
评论(0)
推荐(0)
2022年6月19日