|
@@ -7,7 +7,7 @@
|
|
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
|
|
|
typeof define === 'function' && define.amd ? define(['exports'], factory) :
|
|
|
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.THREE = {}));
|
|
|
-})(this, (function (exports) { 'use strict';
|
|
|
+}(this, (function (exports) { 'use strict';
|
|
|
|
|
|
const REVISION = '137dev';
|
|
|
const MOUSE = {
|
|
@@ -14319,7 +14319,7 @@
|
|
|
instancing: object.isInstancedMesh === true,
|
|
|
instancingColor: object.isInstancedMesh === true && object.instanceColor !== null,
|
|
|
supportsVertexTextures: vertexTextures,
|
|
|
- outputEncoding: currentRenderTarget !== null ? currentRenderTarget.texture.encoding : renderer.outputEncoding,
|
|
|
+ outputEncoding: currentRenderTarget === null ? renderer.outputEncoding : LinearEncoding,
|
|
|
map: !!material.map,
|
|
|
matcap: !!material.matcap,
|
|
|
envMap: !!envMap,
|
|
@@ -19970,7 +19970,7 @@
|
|
|
textures.resetTextureUnits();
|
|
|
const fog = scene.fog;
|
|
|
const environment = material.isMeshStandardMaterial ? scene.environment : null;
|
|
|
- const encoding = _currentRenderTarget === null ? _this.outputEncoding : _currentRenderTarget.texture.encoding;
|
|
|
+ const encoding = _currentRenderTarget === null ? _this.outputEncoding : LinearEncoding;
|
|
|
const envMap = (material.isMeshStandardMaterial ? cubeuvmaps : cubemaps).get(material.envMap || environment);
|
|
|
const vertexAlphas = material.vertexColors === true && !!geometry.attributes.color && geometry.attributes.color.itemSize === 4;
|
|
|
const vertexTangents = !!material.normalMap && !!geometry.attributes.tangent;
|
|
@@ -24541,9 +24541,7 @@
|
|
|
|
|
|
|
|
|
function isValidDiagonal(a, b) {
|
|
|
- return a.next.i !== b.i && a.prev.i !== b.i && !intersectsPolygon(a, b) && ( // dones't intersect other edges
|
|
|
- locallyInside(a, b) && locallyInside(b, a) && middleInside(a, b) && ( // locally visible
|
|
|
- area(a.prev, a, b.prev) || area(a, b.prev, b)) || // does not create opposite-facing sectors
|
|
|
+ return a.next.i !== b.i && a.prev.i !== b.i && !intersectsPolygon(a, b) && (locallyInside(a, b) && locallyInside(b, a) && middleInside(a, b) && (area(a.prev, a, b.prev) || area(a, b.prev, b)) || // does not create opposite-facing sectors
|
|
|
equals(a, b) && area(a.prev, a, a.next) > 0 && area(b.prev, b, b.next) > 0); // special zero-length case
|
|
|
} // signed area of a triangle
|
|
|
|
|
@@ -36700,4 +36698,4 @@
|
|
|
|
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
|
|
|
-}));
|
|
|
+})));
|