Sha256: 5c52b4c3bffa4269089ec61bcd8bec95c691c4bcf5246a2e2aeaf33ec2aefa98
Contents?: true
Size: 579 Bytes
Versions: 4
Compression:
Stored size: 579 Bytes
Contents
//This file is automatically rebuilt by the Cesium build process. /*global define*/ define(function() { "use strict"; return "mat3 czm_eastNorthUpToEyeCoordinates(vec3 positionMC, vec3 normalEC)\n\ {\n\ vec3 tangentMC = normalize(vec3(-positionMC.y, positionMC.x, 0.0));\n\ vec3 tangentEC = normalize(czm_normal3D * tangentMC);\n\ vec3 bitangentEC = normalize(cross(normalEC, tangentEC));\n\ return mat3(\n\ tangentEC.x, tangentEC.y, tangentEC.z,\n\ bitangentEC.x, bitangentEC.y, bitangentEC.z,\n\ normalEC.x, normalEC.y, normalEC.z);\n\ }\n\ "; });
Version data entries
4 entries across 4 versions & 1 rubygems