Sha256: b1bd57777988ba8ac0335d256d2312f7e0aebd6f7d2dbf8f253c2b55af80a056
Contents?: true
Size: 641 Bytes
Versions: 3
Compression:
Stored size: 641 Bytes
Contents
//This file is automatically rebuilt by the Cesium build process. /*global define*/ define(function() { "use strict"; return "attribute vec3 position3DHigh;\n\ attribute vec3 position3DLow;\n\ attribute vec3 normal;\n\ \n\ varying vec3 v_positionEC;\n\ varying vec3 v_normalEC;\n\ \n\ void main() \n\ {\n\ vec4 p = czm_computePosition();\n\ \n\ v_positionEC = (czm_modelViewRelativeToEye * p).xyz; // position in eye coordinates\n\ v_normalEC = czm_normal * normal; // normal in eye coordinates\n\ \n\ gl_Position = czm_modelViewProjectionRelativeToEye * p;\n\ }\n\ "; });
Version data entries
3 entries across 3 versions & 1 rubygems