摘要: class wcPt3D { public: GLfloat x, y, z; }; typedef GLfloat Matrix4x4[4][4]; // 打印矩阵 void printMatrix4x4(Matrix4x4 mat) { printf("["); for (int row = 0; row < 4; ++row) { for (int col = 0; col... 阅读全文
posted @ 2019-05-14 21:20 鞭挞代码 阅读(771) 评论(0) 推荐(0) 编辑