Flatlogic Bot 055d24df95 WORKING
2025-10-14 02:37:44 +00:00

19 lines
569 B
JavaScript

//This file is automatically rebuilt by the Cesium build process.
export default "/**\n\
* Struct for representing the output of a custom vertex shader.\n\
* \n\
* @name czm_modelVertexOutput\n\
* @glslStruct\n\
*\n\
* @see {@link CustomShader}\n\
* @see {@link Model}\n\
*\n\
* @property {vec3} positionMC The position of the vertex in model coordinates\n\
* @property {float} pointSize A custom value for gl_PointSize. This is only used for point primitives. \n\
*/\n\
struct czm_modelVertexOutput {\n\
vec3 positionMC;\n\
float pointSize;\n\
};\n\
";