fps游戏中如何将矩阵转换为二维屏幕上的矩形坐标
matrix[4][4]
: 4x4 矩阵,通常用于3D变换(如模型视图投影矩阵)。
float* location
: 一个指向位置坐标的指针,表示要转换的3D位置。
int Window_w, int Window_h
: 窗口的宽度和高度。
int& x, int& y, int& w, int& h
: 引用参数,用于存储计算得到的矩形的左上角位置和宽高。
bool GameStart::to_RectMatrix(float matrix[4][4], float* location, int Window_w, int Window_h, int& x, int& y, int& w, int& h) {float Target = matrix[2][0] * location[0] + matrix[2][1] * location[1] + matrix[2][2] * location[2] + matrix[2][3];if (Target < 0.01f) {x = y = w = h = 0;return false;}Target = 1.0f / Target;float to_w = Window_w + (matrix[0][0] * location[0] + matrix[0][1] * location[1] + matrix[0][2] * location[2] + matrix[0][3]) * Target * Window_w;float to_h = Window_h - (matrix[1][0] * location[0] + matrix[1][1] * location[1] + matrix[1][2] * (location[2] + 75.0f) + matrix[1][3]) * Target * Window_h;float to_h1 = Window_h - (matrix[1][0] * location[0] + matrix[1][1] * location[1] + matrix[1][2] * (location[2] - 5.0f) + matrix[1][3]) * Target * Window_h;x = (int)(to_w - (to_h1 - to_h) / 4.0f);y = (int)(to_h);w = (int)((to_h1 - to_h) / 2.0f);h = (int)(to_h1 - to_h);return true;
}