Spaces:
Running
Running
File size: 12,229 Bytes
a28eca3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 |
import {
BufferGeometry,
Color,
Float32BufferAttribute,
Vector2,
Vector3,
Vector4
} from 'three';
import * as BufferGeometryUtils from '../utils/BufferGeometryUtils.js';
/**
* Simplification Geometry Modifier
* - based on code and technique
* - by Stan Melax in 1998
* - Progressive Mesh type Polygon Reduction Algorithm
* - http://www.melax.com/polychop/
*/
const _cb = new Vector3(), _ab = new Vector3();
class SimplifyModifier {
modify( geometry, count ) {
geometry = geometry.clone();
// currently morphAttributes are not supported
delete geometry.morphAttributes.position;
delete geometry.morphAttributes.normal;
const attributes = geometry.attributes;
// this modifier can only process indexed and non-indexed geometries with at least a position attribute
for ( const name in attributes ) {
if ( name !== 'position' && name !== 'uv' && name !== 'normal' && name !== 'tangent' && name !== 'color' ) geometry.deleteAttribute( name );
}
geometry = BufferGeometryUtils.mergeVertices( geometry );
//
// put data of original geometry in different data structures
//
const vertices = [];
const faces = [];
// add vertices
const positionAttribute = geometry.getAttribute( 'position' );
const uvAttribute = geometry.getAttribute( 'uv' );
const normalAttribute = geometry.getAttribute( 'normal' );
const tangentAttribute = geometry.getAttribute( 'tangent' );
const colorAttribute = geometry.getAttribute( 'color' );
let t = null;
let v2 = null;
let nor = null;
let col = null;
for ( let i = 0; i < positionAttribute.count; i ++ ) {
const v = new Vector3().fromBufferAttribute( positionAttribute, i );
if ( uvAttribute ) {
v2 = new Vector2().fromBufferAttribute( uvAttribute, i );
}
if ( normalAttribute ) {
nor = new Vector3().fromBufferAttribute( normalAttribute, i );
}
if ( tangentAttribute ) {
t = new Vector4().fromBufferAttribute( tangentAttribute, i );
}
if ( colorAttribute ) {
col = new Color().fromBufferAttribute( colorAttribute, i );
}
const vertex = new Vertex( v, v2, nor, t, col );
vertices.push( vertex );
}
// add faces
let index = geometry.getIndex();
if ( index !== null ) {
for ( let i = 0; i < index.count; i += 3 ) {
const a = index.getX( i );
const b = index.getX( i + 1 );
const c = index.getX( i + 2 );
const triangle = new Triangle( vertices[ a ], vertices[ b ], vertices[ c ], a, b, c );
faces.push( triangle );
}
} else {
for ( let i = 0; i < positionAttribute.count; i += 3 ) {
const a = i;
const b = i + 1;
const c = i + 2;
const triangle = new Triangle( vertices[ a ], vertices[ b ], vertices[ c ], a, b, c );
faces.push( triangle );
}
}
// compute all edge collapse costs
for ( let i = 0, il = vertices.length; i < il; i ++ ) {
computeEdgeCostAtVertex( vertices[ i ] );
}
let nextVertex;
let z = count;
while ( z -- ) {
nextVertex = minimumCostEdge( vertices );
if ( ! nextVertex ) {
console.log( 'THREE.SimplifyModifier: No next vertex' );
break;
}
collapse( vertices, faces, nextVertex, nextVertex.collapseNeighbor );
}
//
const simplifiedGeometry = new BufferGeometry();
const position = [];
const uv = [];
const normal = [];
const tangent = [];
const color = [];
index = [];
//
for ( let i = 0; i < vertices.length; i ++ ) {
const vertex = vertices[ i ];
position.push( vertex.position.x, vertex.position.y, vertex.position.z );
if ( vertex.uv ) {
uv.push( vertex.uv.x, vertex.uv.y );
}
if ( vertex.normal ) {
normal.push( vertex.normal.x, vertex.normal.y, vertex.normal.z );
}
if ( vertex.tangent ) {
tangent.push( vertex.tangent.x, vertex.tangent.y, vertex.tangent.z, vertex.tangent.w );
}
if ( vertex.color ) {
color.push( vertex.color.r, vertex.color.g, vertex.color.b );
}
// cache final index to GREATLY speed up faces reconstruction
vertex.id = i;
}
//
for ( let i = 0; i < faces.length; i ++ ) {
const face = faces[ i ];
index.push( face.v1.id, face.v2.id, face.v3.id );
}
simplifiedGeometry.setAttribute( 'position', new Float32BufferAttribute( position, 3 ) );
if ( uv.length > 0 ) simplifiedGeometry.setAttribute( 'uv', new Float32BufferAttribute( uv, 2 ) );
if ( normal.length > 0 ) simplifiedGeometry.setAttribute( 'normal', new Float32BufferAttribute( normal, 3 ) );
if ( tangent.length > 0 ) simplifiedGeometry.setAttribute( 'tangent', new Float32BufferAttribute( tangent, 4 ) );
if ( color.length > 0 ) simplifiedGeometry.setAttribute( 'color', new Float32BufferAttribute( color, 3 ) );
simplifiedGeometry.setIndex( index );
return simplifiedGeometry;
}
}
function pushIfUnique( array, object ) {
if ( array.indexOf( object ) === - 1 ) array.push( object );
}
function removeFromArray( array, object ) {
const k = array.indexOf( object );
if ( k > - 1 ) array.splice( k, 1 );
}
function computeEdgeCollapseCost( u, v ) {
// if we collapse edge uv by moving u to v then how
// much different will the model change, i.e. the "error".
const edgelength = v.position.distanceTo( u.position );
let curvature = 0;
const sideFaces = [];
// find the "sides" triangles that are on the edge uv
for ( let i = 0, il = u.faces.length; i < il; i ++ ) {
const face = u.faces[ i ];
if ( face.hasVertex( v ) ) {
sideFaces.push( face );
}
}
// use the triangle facing most away from the sides
// to determine our curvature term
for ( let i = 0, il = u.faces.length; i < il; i ++ ) {
let minCurvature = 1;
const face = u.faces[ i ];
for ( let j = 0; j < sideFaces.length; j ++ ) {
const sideFace = sideFaces[ j ];
// use dot product of face normals.
const dotProd = face.normal.dot( sideFace.normal );
minCurvature = Math.min( minCurvature, ( 1.001 - dotProd ) / 2 );
}
curvature = Math.max( curvature, minCurvature );
}
// crude approach in attempt to preserve borders
// though it seems not to be totally correct
const borders = 0;
if ( sideFaces.length < 2 ) {
// we add some arbitrary cost for borders,
// borders += 10;
curvature = 1;
}
const amt = edgelength * curvature + borders;
return amt;
}
function computeEdgeCostAtVertex( v ) {
// compute the edge collapse cost for all edges that start
// from vertex v. Since we are only interested in reducing
// the object by selecting the min cost edge at each step, we
// only cache the cost of the least cost edge at this vertex
// (in member variable collapse) as well as the value of the
// cost (in member variable collapseCost).
if ( v.neighbors.length === 0 ) {
// collapse if no neighbors.
v.collapseNeighbor = null;
v.collapseCost = - 0.01;
return;
}
v.collapseCost = 100000;
v.collapseNeighbor = null;
// search all neighboring edges for "least cost" edge
for ( let i = 0; i < v.neighbors.length; i ++ ) {
const collapseCost = computeEdgeCollapseCost( v, v.neighbors[ i ] );
if ( ! v.collapseNeighbor ) {
v.collapseNeighbor = v.neighbors[ i ];
v.collapseCost = collapseCost;
v.minCost = collapseCost;
v.totalCost = 0;
v.costCount = 0;
}
v.costCount ++;
v.totalCost += collapseCost;
if ( collapseCost < v.minCost ) {
v.collapseNeighbor = v.neighbors[ i ];
v.minCost = collapseCost;
}
}
// we average the cost of collapsing at this vertex
v.collapseCost = v.totalCost / v.costCount;
// v.collapseCost = v.minCost;
}
function removeVertex( v, vertices ) {
console.assert( v.faces.length === 0 );
while ( v.neighbors.length ) {
const n = v.neighbors.pop();
removeFromArray( n.neighbors, v );
}
removeFromArray( vertices, v );
}
function removeFace( f, faces ) {
removeFromArray( faces, f );
if ( f.v1 ) removeFromArray( f.v1.faces, f );
if ( f.v2 ) removeFromArray( f.v2.faces, f );
if ( f.v3 ) removeFromArray( f.v3.faces, f );
// TODO optimize this!
const vs = [ f.v1, f.v2, f.v3 ];
for ( let i = 0; i < 3; i ++ ) {
const v1 = vs[ i ];
const v2 = vs[ ( i + 1 ) % 3 ];
if ( ! v1 || ! v2 ) continue;
v1.removeIfNonNeighbor( v2 );
v2.removeIfNonNeighbor( v1 );
}
}
function collapse( vertices, faces, u, v ) {
// Collapse the edge uv by moving vertex u onto v
if ( ! v ) {
// u is a vertex all by itself so just delete it..
removeVertex( u, vertices );
return;
}
if ( v.uv ) {
u.uv.copy( v.uv );
}
if ( v.normal ) {
v.normal.add( u.normal ).normalize();
}
if ( v.tangent ) {
v.tangent.add( u.tangent ).normalize();
}
const tmpVertices = [];
for ( let i = 0; i < u.neighbors.length; i ++ ) {
tmpVertices.push( u.neighbors[ i ] );
}
// delete triangles on edge uv:
for ( let i = u.faces.length - 1; i >= 0; i -- ) {
if ( u.faces[ i ] && u.faces[ i ].hasVertex( v ) ) {
removeFace( u.faces[ i ], faces );
}
}
// update remaining triangles to have v instead of u
for ( let i = u.faces.length - 1; i >= 0; i -- ) {
u.faces[ i ].replaceVertex( u, v );
}
removeVertex( u, vertices );
// recompute the edge collapse costs in neighborhood
for ( let i = 0; i < tmpVertices.length; i ++ ) {
computeEdgeCostAtVertex( tmpVertices[ i ] );
}
}
function minimumCostEdge( vertices ) {
// O(n * n) approach. TODO optimize this
let least = vertices[ 0 ];
for ( let i = 0; i < vertices.length; i ++ ) {
if ( vertices[ i ].collapseCost < least.collapseCost ) {
least = vertices[ i ];
}
}
return least;
}
// we use a triangle class to represent structure of face slightly differently
class Triangle {
constructor( v1, v2, v3, a, b, c ) {
this.a = a;
this.b = b;
this.c = c;
this.v1 = v1;
this.v2 = v2;
this.v3 = v3;
this.normal = new Vector3();
this.computeNormal();
v1.faces.push( this );
v1.addUniqueNeighbor( v2 );
v1.addUniqueNeighbor( v3 );
v2.faces.push( this );
v2.addUniqueNeighbor( v1 );
v2.addUniqueNeighbor( v3 );
v3.faces.push( this );
v3.addUniqueNeighbor( v1 );
v3.addUniqueNeighbor( v2 );
}
computeNormal() {
const vA = this.v1.position;
const vB = this.v2.position;
const vC = this.v3.position;
_cb.subVectors( vC, vB );
_ab.subVectors( vA, vB );
_cb.cross( _ab ).normalize();
this.normal.copy( _cb );
}
hasVertex( v ) {
return v === this.v1 || v === this.v2 || v === this.v3;
}
replaceVertex( oldv, newv ) {
if ( oldv === this.v1 ) this.v1 = newv;
else if ( oldv === this.v2 ) this.v2 = newv;
else if ( oldv === this.v3 ) this.v3 = newv;
removeFromArray( oldv.faces, this );
newv.faces.push( this );
oldv.removeIfNonNeighbor( this.v1 );
this.v1.removeIfNonNeighbor( oldv );
oldv.removeIfNonNeighbor( this.v2 );
this.v2.removeIfNonNeighbor( oldv );
oldv.removeIfNonNeighbor( this.v3 );
this.v3.removeIfNonNeighbor( oldv );
this.v1.addUniqueNeighbor( this.v2 );
this.v1.addUniqueNeighbor( this.v3 );
this.v2.addUniqueNeighbor( this.v1 );
this.v2.addUniqueNeighbor( this.v3 );
this.v3.addUniqueNeighbor( this.v1 );
this.v3.addUniqueNeighbor( this.v2 );
this.computeNormal();
}
}
class Vertex {
constructor( v, uv, normal, tangent, color ) {
this.position = v;
this.uv = uv;
this.normal = normal;
this.tangent = tangent;
this.color = color;
this.id = - 1; // external use position in vertices list (for e.g. face generation)
this.faces = []; // faces vertex is connected
this.neighbors = []; // neighbouring vertices aka "adjacentVertices"
// these will be computed in computeEdgeCostAtVertex()
this.collapseCost = 0; // cost of collapsing this vertex, the less the better. aka objdist
this.collapseNeighbor = null; // best candidate for collapsing
}
addUniqueNeighbor( vertex ) {
pushIfUnique( this.neighbors, vertex );
}
removeIfNonNeighbor( n ) {
const neighbors = this.neighbors;
const faces = this.faces;
const offset = neighbors.indexOf( n );
if ( offset === - 1 ) return;
for ( let i = 0; i < faces.length; i ++ ) {
if ( faces[ i ].hasVertex( n ) ) return;
}
neighbors.splice( offset, 1 );
}
}
export { SimplifyModifier };
|