Lines Matching refs:canonizedCoords
2812 IVec3 canonizedCoords; in remapCubeEdgeCoords() local
2818 case CUBEFACE_NEGATIVE_X: canonizedCoords = IVec3(0, size-1-coords.y(), coords.x()); break; in remapCubeEdgeCoords()
2819 …case CUBEFACE_POSITIVE_X: canonizedCoords = IVec3(size-1, size-1-coords.y(), size-1-coords.x())… in remapCubeEdgeCoords()
2820 case CUBEFACE_NEGATIVE_Y: canonizedCoords = IVec3(coords.x(), 0, size-1-coords.y()); break; in remapCubeEdgeCoords()
2821 case CUBEFACE_POSITIVE_Y: canonizedCoords = IVec3(coords.x(), size-1, coords.y()); break; in remapCubeEdgeCoords()
2822 …case CUBEFACE_NEGATIVE_Z: canonizedCoords = IVec3(size-1-coords.x(), size-1-coords.y(), 0); b… in remapCubeEdgeCoords()
2823 …case CUBEFACE_POSITIVE_Z: canonizedCoords = IVec3(coords.x(), size-1-coords.y(), size-1); bre… in remapCubeEdgeCoords()
2829 if (canonizedCoords.x() == -1) in remapCubeEdgeCoords()
2830 …return CubeFaceIntCoords(CUBEFACE_NEGATIVE_X, IVec2(canonizedCoords.z(), size-1-canonizedCoords.y(… in remapCubeEdgeCoords()
2832 if (canonizedCoords.x() == size) in remapCubeEdgeCoords()
2833 …rn CubeFaceIntCoords(CUBEFACE_POSITIVE_X, IVec2(size-1-canonizedCoords.z(), size-1-canonizedCoords… in remapCubeEdgeCoords()
2835 if (canonizedCoords.y() == -1) in remapCubeEdgeCoords()
2836 …return CubeFaceIntCoords(CUBEFACE_NEGATIVE_Y, IVec2(canonizedCoords.x(), size-1-canonizedCoords.z(… in remapCubeEdgeCoords()
2838 if (canonizedCoords.y() == size) in remapCubeEdgeCoords()
2839 return CubeFaceIntCoords(CUBEFACE_POSITIVE_Y, IVec2(canonizedCoords.x(), canonizedCoords.z())); in remapCubeEdgeCoords()
2841 if (canonizedCoords.z() == -1) in remapCubeEdgeCoords()
2842 …rn CubeFaceIntCoords(CUBEFACE_NEGATIVE_Z, IVec2(size-1-canonizedCoords.x(), size-1-canonizedCoords… in remapCubeEdgeCoords()
2844 if (canonizedCoords.z() == size) in remapCubeEdgeCoords()
2845 …return CubeFaceIntCoords(CUBEFACE_POSITIVE_Z, IVec2(canonizedCoords.x(), size-1-canonizedCoords.y(… in remapCubeEdgeCoords()