Files
speckle-server/scratch/edge-debug-selection/Default/Cache/Cache_Data/f_0000f4
T

689 lines
25 KiB
Plaintext

import {
BufferAttribute,
BufferGeometry,
Float32BufferAttribute,
InterleavedBuffer,
InterleavedBufferAttribute,
MathUtils,
TriangleFanDrawMode,
TriangleStripDrawMode,
TrianglesDrawMode,
Vector3
} from "/_nuxt/node_modules/.cache/vite/client/deps/chunk-KHL3VXVA.js?v=e4f18c29";
import "/_nuxt/node_modules/.cache/vite/client/deps/chunk-V4OQ3NZ2.js?v=e4f18c29";
// ../../node_modules/three/examples/jsm/utils/BufferGeometryUtils.js
function computeTangents() {
throw new Error("BufferGeometryUtils: computeTangents renamed to computeMikkTSpaceTangents.");
}
function computeMikkTSpaceTangents(geometry, MikkTSpace, negateSign = true) {
if (!MikkTSpace || !MikkTSpace.isReady) {
throw new Error("BufferGeometryUtils: Initialized MikkTSpace library required.");
}
if (!geometry.hasAttribute("position") || !geometry.hasAttribute("normal") || !geometry.hasAttribute("uv")) {
throw new Error('BufferGeometryUtils: Tangents require "position", "normal", and "uv" attributes.');
}
function getAttributeArray(attribute) {
if (attribute.normalized || attribute.isInterleavedBufferAttribute) {
const srcArray = attribute.isInterleavedBufferAttribute ? attribute.data.array : attribute.array;
const dstArray = new Float32Array(attribute.getCount() * attribute.itemSize);
for (let i = 0, j = 0; i < attribute.getCount(); i++) {
dstArray[j++] = MathUtils.denormalize(attribute.getX(i), srcArray);
dstArray[j++] = MathUtils.denormalize(attribute.getY(i), srcArray);
if (attribute.itemSize > 2) {
dstArray[j++] = MathUtils.denormalize(attribute.getZ(i), srcArray);
}
}
return dstArray;
}
if (attribute.array instanceof Float32Array) {
return attribute.array;
}
return new Float32Array(attribute.array);
}
const _geometry = geometry.index ? geometry.toNonIndexed() : geometry;
const tangents = MikkTSpace.generateTangents(
getAttributeArray(_geometry.attributes.position),
getAttributeArray(_geometry.attributes.normal),
getAttributeArray(_geometry.attributes.uv)
);
if (negateSign) {
for (let i = 3; i < tangents.length; i += 4) {
tangents[i] *= -1;
}
}
_geometry.setAttribute("tangent", new BufferAttribute(tangents, 4));
if (geometry !== _geometry) {
geometry.copy(_geometry);
}
return geometry;
}
function mergeBufferGeometries(geometries, useGroups = false) {
const isIndexed = geometries[0].index !== null;
const attributesUsed = new Set(Object.keys(geometries[0].attributes));
const morphAttributesUsed = new Set(Object.keys(geometries[0].morphAttributes));
const attributes = {};
const morphAttributes = {};
const morphTargetsRelative = geometries[0].morphTargetsRelative;
const mergedGeometry = new BufferGeometry();
let offset = 0;
for (let i = 0; i < geometries.length; ++i) {
const geometry = geometries[i];
let attributesCount = 0;
if (isIndexed !== (geometry.index !== null)) {
console.error("THREE.BufferGeometryUtils: .mergeBufferGeometries() failed with geometry at index " + i + ". All geometries must have compatible attributes; make sure index attribute exists among all geometries, or in none of them.");
return null;
}
for (const name in geometry.attributes) {
if (!attributesUsed.has(name)) {
console.error("THREE.BufferGeometryUtils: .mergeBufferGeometries() failed with geometry at index " + i + '. All geometries must have compatible attributes; make sure "' + name + '" attribute exists among all geometries, or in none of them.');
return null;
}
if (attributes[name] === void 0) attributes[name] = [];
attributes[name].push(geometry.attributes[name]);
attributesCount++;
}
if (attributesCount !== attributesUsed.size) {
console.error("THREE.BufferGeometryUtils: .mergeBufferGeometries() failed with geometry at index " + i + ". Make sure all geometries have the same number of attributes.");
return null;
}
if (morphTargetsRelative !== geometry.morphTargetsRelative) {
console.error("THREE.BufferGeometryUtils: .mergeBufferGeometries() failed with geometry at index " + i + ". .morphTargetsRelative must be consistent throughout all geometries.");
return null;
}
for (const name in geometry.morphAttributes) {
if (!morphAttributesUsed.has(name)) {
console.error("THREE.BufferGeometryUtils: .mergeBufferGeometries() failed with geometry at index " + i + ". .morphAttributes must be consistent throughout all geometries.");
return null;
}
if (morphAttributes[name] === void 0) morphAttributes[name] = [];
morphAttributes[name].push(geometry.morphAttributes[name]);
}
mergedGeometry.userData.mergedUserData = mergedGeometry.userData.mergedUserData || [];
mergedGeometry.userData.mergedUserData.push(geometry.userData);
if (useGroups) {
let count;
if (isIndexed) {
count = geometry.index.count;
} else if (geometry.attributes.position !== void 0) {
count = geometry.attributes.position.count;
} else {
console.error("THREE.BufferGeometryUtils: .mergeBufferGeometries() failed with geometry at index " + i + ". The geometry must have either an index or a position attribute");
return null;
}
mergedGeometry.addGroup(offset, count, i);
offset += count;
}
}
if (isIndexed) {
let indexOffset = 0;
const mergedIndex = [];
for (let i = 0; i < geometries.length; ++i) {
const index = geometries[i].index;
for (let j = 0; j < index.count; ++j) {
mergedIndex.push(index.getX(j) + indexOffset);
}
indexOffset += geometries[i].attributes.position.count;
}
mergedGeometry.setIndex(mergedIndex);
}
for (const name in attributes) {
const mergedAttribute = mergeBufferAttributes(attributes[name]);
if (!mergedAttribute) {
console.error("THREE.BufferGeometryUtils: .mergeBufferGeometries() failed while trying to merge the " + name + " attribute.");
return null;
}
mergedGeometry.setAttribute(name, mergedAttribute);
}
for (const name in morphAttributes) {
const numMorphTargets = morphAttributes[name][0].length;
if (numMorphTargets === 0) break;
mergedGeometry.morphAttributes = mergedGeometry.morphAttributes || {};
mergedGeometry.morphAttributes[name] = [];
for (let i = 0; i < numMorphTargets; ++i) {
const morphAttributesToMerge = [];
for (let j = 0; j < morphAttributes[name].length; ++j) {
morphAttributesToMerge.push(morphAttributes[name][j][i]);
}
const mergedMorphAttribute = mergeBufferAttributes(morphAttributesToMerge);
if (!mergedMorphAttribute) {
console.error("THREE.BufferGeometryUtils: .mergeBufferGeometries() failed while trying to merge the " + name + " morphAttribute.");
return null;
}
mergedGeometry.morphAttributes[name].push(mergedMorphAttribute);
}
}
return mergedGeometry;
}
function mergeBufferAttributes(attributes) {
let TypedArray;
let itemSize;
let normalized;
let arrayLength = 0;
for (let i = 0; i < attributes.length; ++i) {
const attribute = attributes[i];
if (attribute.isInterleavedBufferAttribute) {
console.error("THREE.BufferGeometryUtils: .mergeBufferAttributes() failed. InterleavedBufferAttributes are not supported.");
return null;
}
if (TypedArray === void 0) TypedArray = attribute.array.constructor;
if (TypedArray !== attribute.array.constructor) {
console.error("THREE.BufferGeometryUtils: .mergeBufferAttributes() failed. BufferAttribute.array must be of consistent array types across matching attributes.");
return null;
}
if (itemSize === void 0) itemSize = attribute.itemSize;
if (itemSize !== attribute.itemSize) {
console.error("THREE.BufferGeometryUtils: .mergeBufferAttributes() failed. BufferAttribute.itemSize must be consistent across matching attributes.");
return null;
}
if (normalized === void 0) normalized = attribute.normalized;
if (normalized !== attribute.normalized) {
console.error("THREE.BufferGeometryUtils: .mergeBufferAttributes() failed. BufferAttribute.normalized must be consistent across matching attributes.");
return null;
}
arrayLength += attribute.array.length;
}
const array = new TypedArray(arrayLength);
let offset = 0;
for (let i = 0; i < attributes.length; ++i) {
array.set(attributes[i].array, offset);
offset += attributes[i].array.length;
}
return new BufferAttribute(array, itemSize, normalized);
}
function interleaveAttributes(attributes) {
let TypedArray;
let arrayLength = 0;
let stride = 0;
for (let i = 0, l = attributes.length; i < l; ++i) {
const attribute = attributes[i];
if (TypedArray === void 0) TypedArray = attribute.array.constructor;
if (TypedArray !== attribute.array.constructor) {
console.error("AttributeBuffers of different types cannot be interleaved");
return null;
}
arrayLength += attribute.array.length;
stride += attribute.itemSize;
}
const interleavedBuffer = new InterleavedBuffer(new TypedArray(arrayLength), stride);
let offset = 0;
const res = [];
const getters = ["getX", "getY", "getZ", "getW"];
const setters = ["setX", "setY", "setZ", "setW"];
for (let j = 0, l = attributes.length; j < l; j++) {
const attribute = attributes[j];
const itemSize = attribute.itemSize;
const count = attribute.count;
const iba = new InterleavedBufferAttribute(interleavedBuffer, itemSize, offset, attribute.normalized);
res.push(iba);
offset += itemSize;
for (let c = 0; c < count; c++) {
for (let k = 0; k < itemSize; k++) {
iba[setters[k]](c, attribute[getters[k]](c));
}
}
}
return res;
}
function deinterleaveAttribute(attribute) {
const cons = attribute.data.array.constructor;
const count = attribute.count;
const itemSize = attribute.itemSize;
const normalized = attribute.normalized;
const array = new cons(count * itemSize);
let newAttribute;
if (attribute.isInstancedInterleavedBufferAttribute) {
newAttribute = new InstancedBufferAttribute(array, itemSize, normalized, attribute.meshPerAttribute);
} else {
newAttribute = new BufferAttribute(array, itemSize, normalized);
}
for (let i = 0; i < count; i++) {
newAttribute.setX(i, attribute.getX(i));
if (itemSize >= 2) {
newAttribute.setY(i, attribute.getY(i));
}
if (itemSize >= 3) {
newAttribute.setZ(i, attribute.getZ(i));
}
if (itemSize >= 4) {
newAttribute.setW(i, attribute.getW(i));
}
}
return newAttribute;
}
function deinterleaveGeometry(geometry) {
const attributes = geometry.attributes;
const morphTargets = geometry.morphTargets;
const attrMap = /* @__PURE__ */ new Map();
for (const key in attributes) {
const attr = attributes[key];
if (attr.isInterleavedBufferAttribute) {
if (!attrMap.has(attr)) {
attrMap.set(attr, deinterleaveAttribute(attr));
}
attributes[key] = attrMap.get(attr);
}
}
for (const key in morphTargets) {
const attr = morphTargets[key];
if (attr.isInterleavedBufferAttribute) {
if (!attrMap.has(attr)) {
attrMap.set(attr, deinterleaveAttribute(attr));
}
morphTargets[key] = attrMap.get(attr);
}
}
}
function estimateBytesUsed(geometry) {
let mem = 0;
for (const name in geometry.attributes) {
const attr = geometry.getAttribute(name);
mem += attr.count * attr.itemSize * attr.array.BYTES_PER_ELEMENT;
}
const indices = geometry.getIndex();
mem += indices ? indices.count * indices.itemSize * indices.array.BYTES_PER_ELEMENT : 0;
return mem;
}
function mergeVertices(geometry, tolerance = 1e-4) {
tolerance = Math.max(tolerance, Number.EPSILON);
const hashToIndex = {};
const indices = geometry.getIndex();
const positions = geometry.getAttribute("position");
const vertexCount = indices ? indices.count : positions.count;
let nextIndex = 0;
const attributeNames = Object.keys(geometry.attributes);
const attrArrays = {};
const morphAttrsArrays = {};
const newIndices = [];
const getters = ["getX", "getY", "getZ", "getW"];
for (let i = 0, l = attributeNames.length; i < l; i++) {
const name = attributeNames[i];
attrArrays[name] = [];
const morphAttr = geometry.morphAttributes[name];
if (morphAttr) {
morphAttrsArrays[name] = new Array(morphAttr.length).fill().map(() => []);
}
}
const decimalShift = Math.log10(1 / tolerance);
const shiftMultiplier = Math.pow(10, decimalShift);
for (let i = 0; i < vertexCount; i++) {
const index = indices ? indices.getX(i) : i;
let hash = "";
for (let j = 0, l = attributeNames.length; j < l; j++) {
const name = attributeNames[j];
const attribute = geometry.getAttribute(name);
const itemSize = attribute.itemSize;
for (let k = 0; k < itemSize; k++) {
hash += `${~~(attribute[getters[k]](index) * shiftMultiplier)},`;
}
}
if (hash in hashToIndex) {
newIndices.push(hashToIndex[hash]);
} else {
for (let j = 0, l = attributeNames.length; j < l; j++) {
const name = attributeNames[j];
const attribute = geometry.getAttribute(name);
const morphAttr = geometry.morphAttributes[name];
const itemSize = attribute.itemSize;
const newarray = attrArrays[name];
const newMorphArrays = morphAttrsArrays[name];
for (let k = 0; k < itemSize; k++) {
const getterFunc = getters[k];
newarray.push(attribute[getterFunc](index));
if (morphAttr) {
for (let m = 0, ml = morphAttr.length; m < ml; m++) {
newMorphArrays[m].push(morphAttr[m][getterFunc](index));
}
}
}
}
hashToIndex[hash] = nextIndex;
newIndices.push(nextIndex);
nextIndex++;
}
}
const result = geometry.clone();
for (let i = 0, l = attributeNames.length; i < l; i++) {
const name = attributeNames[i];
const oldAttribute = geometry.getAttribute(name);
const buffer = new oldAttribute.array.constructor(attrArrays[name]);
const attribute = new BufferAttribute(buffer, oldAttribute.itemSize, oldAttribute.normalized);
result.setAttribute(name, attribute);
if (name in morphAttrsArrays) {
for (let j = 0; j < morphAttrsArrays[name].length; j++) {
const oldMorphAttribute = geometry.morphAttributes[name][j];
const buffer2 = new oldMorphAttribute.array.constructor(morphAttrsArrays[name][j]);
const morphAttribute = new BufferAttribute(buffer2, oldMorphAttribute.itemSize, oldMorphAttribute.normalized);
result.morphAttributes[name][j] = morphAttribute;
}
}
}
result.setIndex(newIndices);
return result;
}
function toTrianglesDrawMode(geometry, drawMode) {
if (drawMode === TrianglesDrawMode) {
console.warn("THREE.BufferGeometryUtils.toTrianglesDrawMode(): Geometry already defined as triangles.");
return geometry;
}
if (drawMode === TriangleFanDrawMode || drawMode === TriangleStripDrawMode) {
let index = geometry.getIndex();
if (index === null) {
const indices = [];
const position = geometry.getAttribute("position");
if (position !== void 0) {
for (let i = 0; i < position.count; i++) {
indices.push(i);
}
geometry.setIndex(indices);
index = geometry.getIndex();
} else {
console.error("THREE.BufferGeometryUtils.toTrianglesDrawMode(): Undefined position attribute. Processing not possible.");
return geometry;
}
}
const numberOfTriangles = index.count - 2;
const newIndices = [];
if (drawMode === TriangleFanDrawMode) {
for (let i = 1; i <= numberOfTriangles; i++) {
newIndices.push(index.getX(0));
newIndices.push(index.getX(i));
newIndices.push(index.getX(i + 1));
}
} else {
for (let i = 0; i < numberOfTriangles; i++) {
if (i % 2 === 0) {
newIndices.push(index.getX(i));
newIndices.push(index.getX(i + 1));
newIndices.push(index.getX(i + 2));
} else {
newIndices.push(index.getX(i + 2));
newIndices.push(index.getX(i + 1));
newIndices.push(index.getX(i));
}
}
}
if (newIndices.length / 3 !== numberOfTriangles) {
console.error("THREE.BufferGeometryUtils.toTrianglesDrawMode(): Unable to generate correct amount of triangles.");
}
const newGeometry = geometry.clone();
newGeometry.setIndex(newIndices);
newGeometry.clearGroups();
return newGeometry;
} else {
console.error("THREE.BufferGeometryUtils.toTrianglesDrawMode(): Unknown draw mode:", drawMode);
return geometry;
}
}
function computeMorphedAttributes(object) {
if (object.geometry.isBufferGeometry !== true) {
console.error("THREE.BufferGeometryUtils: Geometry is not of type BufferGeometry.");
return null;
}
const _vA = new Vector3();
const _vB = new Vector3();
const _vC = new Vector3();
const _tempA = new Vector3();
const _tempB = new Vector3();
const _tempC = new Vector3();
const _morphA = new Vector3();
const _morphB = new Vector3();
const _morphC = new Vector3();
function _calculateMorphedAttributeData(object2, attribute, morphAttribute, morphTargetsRelative2, a2, b2, c2, modifiedAttributeArray) {
_vA.fromBufferAttribute(attribute, a2);
_vB.fromBufferAttribute(attribute, b2);
_vC.fromBufferAttribute(attribute, c2);
const morphInfluences = object2.morphTargetInfluences;
if (morphAttribute && morphInfluences) {
_morphA.set(0, 0, 0);
_morphB.set(0, 0, 0);
_morphC.set(0, 0, 0);
for (let i2 = 0, il2 = morphAttribute.length; i2 < il2; i2++) {
const influence = morphInfluences[i2];
const morph = morphAttribute[i2];
if (influence === 0) continue;
_tempA.fromBufferAttribute(morph, a2);
_tempB.fromBufferAttribute(morph, b2);
_tempC.fromBufferAttribute(morph, c2);
if (morphTargetsRelative2) {
_morphA.addScaledVector(_tempA, influence);
_morphB.addScaledVector(_tempB, influence);
_morphC.addScaledVector(_tempC, influence);
} else {
_morphA.addScaledVector(_tempA.sub(_vA), influence);
_morphB.addScaledVector(_tempB.sub(_vB), influence);
_morphC.addScaledVector(_tempC.sub(_vC), influence);
}
}
_vA.add(_morphA);
_vB.add(_morphB);
_vC.add(_morphC);
}
if (object2.isSkinnedMesh) {
object2.boneTransform(a2, _vA);
object2.boneTransform(b2, _vB);
object2.boneTransform(c2, _vC);
}
modifiedAttributeArray[a2 * 3 + 0] = _vA.x;
modifiedAttributeArray[a2 * 3 + 1] = _vA.y;
modifiedAttributeArray[a2 * 3 + 2] = _vA.z;
modifiedAttributeArray[b2 * 3 + 0] = _vB.x;
modifiedAttributeArray[b2 * 3 + 1] = _vB.y;
modifiedAttributeArray[b2 * 3 + 2] = _vB.z;
modifiedAttributeArray[c2 * 3 + 0] = _vC.x;
modifiedAttributeArray[c2 * 3 + 1] = _vC.y;
modifiedAttributeArray[c2 * 3 + 2] = _vC.z;
}
const geometry = object.geometry;
const material = object.material;
let a, b, c;
const index = geometry.index;
const positionAttribute = geometry.attributes.position;
const morphPosition = geometry.morphAttributes.position;
const morphTargetsRelative = geometry.morphTargetsRelative;
const normalAttribute = geometry.attributes.normal;
const morphNormal = geometry.morphAttributes.position;
const groups = geometry.groups;
const drawRange = geometry.drawRange;
let i, j, il, jl;
let group;
let start, end;
const modifiedPosition = new Float32Array(positionAttribute.count * positionAttribute.itemSize);
const modifiedNormal = new Float32Array(normalAttribute.count * normalAttribute.itemSize);
if (index !== null) {
if (Array.isArray(material)) {
for (i = 0, il = groups.length; i < il; i++) {
group = groups[i];
start = Math.max(group.start, drawRange.start);
end = Math.min(group.start + group.count, drawRange.start + drawRange.count);
for (j = start, jl = end; j < jl; j += 3) {
a = index.getX(j);
b = index.getX(j + 1);
c = index.getX(j + 2);
_calculateMorphedAttributeData(
object,
positionAttribute,
morphPosition,
morphTargetsRelative,
a,
b,
c,
modifiedPosition
);
_calculateMorphedAttributeData(
object,
normalAttribute,
morphNormal,
morphTargetsRelative,
a,
b,
c,
modifiedNormal
);
}
}
} else {
start = Math.max(0, drawRange.start);
end = Math.min(index.count, drawRange.start + drawRange.count);
for (i = start, il = end; i < il; i += 3) {
a = index.getX(i);
b = index.getX(i + 1);
c = index.getX(i + 2);
_calculateMorphedAttributeData(
object,
positionAttribute,
morphPosition,
morphTargetsRelative,
a,
b,
c,
modifiedPosition
);
_calculateMorphedAttributeData(
object,
normalAttribute,
morphNormal,
morphTargetsRelative,
a,
b,
c,
modifiedNormal
);
}
}
} else {
if (Array.isArray(material)) {
for (i = 0, il = groups.length; i < il; i++) {
group = groups[i];
start = Math.max(group.start, drawRange.start);
end = Math.min(group.start + group.count, drawRange.start + drawRange.count);
for (j = start, jl = end; j < jl; j += 3) {
a = j;
b = j + 1;
c = j + 2;
_calculateMorphedAttributeData(
object,
positionAttribute,
morphPosition,
morphTargetsRelative,
a,
b,
c,
modifiedPosition
);
_calculateMorphedAttributeData(
object,
normalAttribute,
morphNormal,
morphTargetsRelative,
a,
b,
c,
modifiedNormal
);
}
}
} else {
start = Math.max(0, drawRange.start);
end = Math.min(positionAttribute.count, drawRange.start + drawRange.count);
for (i = start, il = end; i < il; i += 3) {
a = i;
b = i + 1;
c = i + 2;
_calculateMorphedAttributeData(
object,
positionAttribute,
morphPosition,
morphTargetsRelative,
a,
b,
c,
modifiedPosition
);
_calculateMorphedAttributeData(
object,
normalAttribute,
morphNormal,
morphTargetsRelative,
a,
b,
c,
modifiedNormal
);
}
}
}
const morphedPositionAttribute = new Float32BufferAttribute(modifiedPosition, 3);
const morphedNormalAttribute = new Float32BufferAttribute(modifiedNormal, 3);
return {
positionAttribute,
normalAttribute,
morphedPositionAttribute,
morphedNormalAttribute
};
}
function mergeGroups(geometry) {
if (geometry.groups.length === 0) {
console.warn("THREE.BufferGeometryUtils.mergeGroups(): No groups are defined. Nothing to merge.");
return geometry;
}
let groups = geometry.groups;
groups = groups.sort((a, b) => {
if (a.materialIndex !== b.materialIndex) return a.materialIndex - b.materialIndex;
return a.start - b.start;
});
if (geometry.getIndex() === null) {
const positionAttribute = geometry.getAttribute("position");
const indices = [];
for (let i = 0; i < positionAttribute.count; i += 3) {
indices.push(i, i + 1, i + 2);
}
geometry.setIndex(indices);
}
const index = geometry.getIndex();
const newIndices = [];
for (let i = 0; i < groups.length; i++) {
const group = groups[i];
const groupStart = group.start;
const groupLength = groupStart + group.count;
for (let j = groupStart; j < groupLength; j++) {
newIndices.push(index.getX(j));
}
}
geometry.dispose();
geometry.setIndex(newIndices);
let start = 0;
for (let i = 0; i < groups.length; i++) {
const group = groups[i];
group.start = start;
start += group.count;
}
let currentGroup = groups[0];
geometry.groups = [currentGroup];
for (let i = 1; i < groups.length; i++) {
const group = groups[i];
if (currentGroup.materialIndex === group.materialIndex) {
currentGroup.count += group.count;
} else {
currentGroup = group;
geometry.groups.push(currentGroup);
}
}
return geometry;
}
export {
computeMikkTSpaceTangents,
computeMorphedAttributes,
computeTangents,
deinterleaveAttribute,
deinterleaveGeometry,
estimateBytesUsed,
interleaveAttributes,
mergeBufferAttributes,
mergeBufferGeometries,
mergeGroups,
mergeVertices,
toTrianglesDrawMode
};
//# sourceMappingURL=three_examples_jsm_utils_BufferGeometryUtils__js.js.map