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 14 15 | //This file is automatically rebuilt by the Cesium build process.
export default "struct Ray {\n\
vec3 pos;\n\
vec3 dir;\n\
};\n\
\n\
float minComponent(in vec3 v) {\n\
return min(min(v.x, v.y), v.z);\n\
}\n\
\n\
float maxComponent(in vec3 v) {\n\
return max(max(v.x, v.y), v.z);\n\
}\n\
";
|