System.register([], function (exports_1, context_1) {
"use strict";
var __moduleName = context_1 && context_1.id;
function vec2col(v) {
return (((v.x * 255) & 0xFF) << 16) +
(((v.y * 255) & 0xFF) << 8) +
(((v.z * 255) & 0xFF) << 0);
}
exports_1("vec2col", vec2col);
return {
setters: [],
execute: function () {
}
};
});
//# sourceMappingURL=utils.js.map