如题, 作业2 里cubemapFaceDirections 是什么 , 为什么是这些坐标?
const Eigen::Vector3f cubemapFaceDirections[6][3] = {
{{0, 0, 1}, {0, -1, 0}, {-1, 0, 0}}, // negx
{{0, 0, 1}, {0, -1, 0}, {1, 0, 0}}, // posx
{{1, 0, 0}, {0, 0, -1}, {0, -1, 0}}, // negy
{{1, 0, 0}, {0, 0, 1}, {0, 1, 0}}, // posy
{{-1, 0, 0}, {0, -1, 0}, {0, 0, -1}}, // negz
{{1, 0, 0}, {0, -1, 0}, {0, 0, 1}}, // posz
};