Lines Matching refs:canonizedCoords
2534 IVec3 canonizedCoords; in remapCubeEdgeCoords() local
2540 case CUBEFACE_NEGATIVE_X: canonizedCoords = IVec3(0, size-1-coords.y(), coords.x()); break; in remapCubeEdgeCoords()
2541 …case CUBEFACE_POSITIVE_X: canonizedCoords = IVec3(size-1, size-1-coords.y(), size-1-coords.x())… in remapCubeEdgeCoords()
2542 case CUBEFACE_NEGATIVE_Y: canonizedCoords = IVec3(coords.x(), 0, size-1-coords.y()); break; in remapCubeEdgeCoords()
2543 case CUBEFACE_POSITIVE_Y: canonizedCoords = IVec3(coords.x(), size-1, coords.y()); break; in remapCubeEdgeCoords()
2544 …case CUBEFACE_NEGATIVE_Z: canonizedCoords = IVec3(size-1-coords.x(), size-1-coords.y(), 0); b… in remapCubeEdgeCoords()
2545 …case CUBEFACE_POSITIVE_Z: canonizedCoords = IVec3(coords.x(), size-1-coords.y(), size-1); bre… in remapCubeEdgeCoords()
2551 if (canonizedCoords.x() == -1) in remapCubeEdgeCoords()
2552 …return CubeFaceIntCoords(CUBEFACE_NEGATIVE_X, IVec2(canonizedCoords.z(), size-1-canonizedCoords.y(… in remapCubeEdgeCoords()
2554 if (canonizedCoords.x() == size) in remapCubeEdgeCoords()
2555 …rn CubeFaceIntCoords(CUBEFACE_POSITIVE_X, IVec2(size-1-canonizedCoords.z(), size-1-canonizedCoords… in remapCubeEdgeCoords()
2557 if (canonizedCoords.y() == -1) in remapCubeEdgeCoords()
2558 …return CubeFaceIntCoords(CUBEFACE_NEGATIVE_Y, IVec2(canonizedCoords.x(), size-1-canonizedCoords.z(… in remapCubeEdgeCoords()
2560 if (canonizedCoords.y() == size) in remapCubeEdgeCoords()
2561 return CubeFaceIntCoords(CUBEFACE_POSITIVE_Y, IVec2(canonizedCoords.x(), canonizedCoords.z())); in remapCubeEdgeCoords()
2563 if (canonizedCoords.z() == -1) in remapCubeEdgeCoords()
2564 …rn CubeFaceIntCoords(CUBEFACE_NEGATIVE_Z, IVec2(size-1-canonizedCoords.x(), size-1-canonizedCoords… in remapCubeEdgeCoords()
2566 if (canonizedCoords.z() == size) in remapCubeEdgeCoords()
2567 …return CubeFaceIntCoords(CUBEFACE_POSITIVE_Z, IVec2(canonizedCoords.x(), size-1-canonizedCoords.y(… in remapCubeEdgeCoords()