Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 | //This file is automatically rebuilt by the Cesium build process.
export default "/**\n\
* Approximate uv coordinates based on the ellipsoid normal.\n\
*\n\
* @name czm_ellipsoidTextureCoordinates\n\
* @glslFunction\n\
*/\n\
vec2 czm_ellipsoidTextureCoordinates(vec3 normal)\n\
{\n\
return vec2(atan(normal.y, normal.x) * czm_oneOverTwoPi + 0.5, asin(normal.z) * czm_oneOverPi + 0.5);\n\
}\n\
";
|