//This file is automatically rebuilt by the Cesium build process. export default "/**\n\ * Returns a position in model coordinates relative to eye taking into\n\ * account the current scene mode: 3D, 2D, or Columbus view.\n\ *

\n\ * This uses standard position attributes, position3DHigh, \n\ * position3DLow, position2DHigh, and position2DLow, \n\ * and should be used when writing a vertex shader for an {@link Appearance}.\n\ *

\n\ *\n\ * @name czm_computePosition\n\ * @glslFunction\n\ *\n\ * @returns {vec4} The position relative to eye.\n\ *\n\ * @example\n\ * vec4 p = czm_computePosition();\n\ * v_positionEC = (czm_modelViewRelativeToEye * p).xyz;\n\ * gl_Position = czm_modelViewProjectionRelativeToEye * p;\n\ *\n\ * @see czm_translateRelativeToEye\n\ */\n\ vec4 czm_computePosition();\n\ ";