| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- import { BufferGeometry } from '../core/BufferGeometry';
- import { Float32BufferAttribute } from '../core/BufferAttribute';
- import { Geometry } from '../core/Geometry';
- import { _Math } from '../math/Math';
- /**
- * @author WestLangley / http://github.com/WestLangley
- * @author Mugen87 / https://github.com/Mugen87
- */
- function EdgesGeometry( geometry, thresholdAngle ) {
- BufferGeometry.call( this );
- this.type = 'EdgesGeometry';
- this.parameters = {
- thresholdAngle: thresholdAngle
- };
- thresholdAngle = ( thresholdAngle !== undefined ) ? thresholdAngle : 1;
- // buffer
- var vertices = [];
- // helper variables
- var thresholdDot = Math.cos( _Math.DEG2RAD * thresholdAngle );
- var edge = [ 0, 0 ], edges = {}, edge1, edge2;
- var key, keys = [ 'a', 'b', 'c' ];
- // prepare source geometry
- var geometry2;
- if ( geometry.isBufferGeometry ) {
- geometry2 = new Geometry();
- geometry2.fromBufferGeometry( geometry );
- } else {
- geometry2 = geometry.clone();
- }
- geometry2.mergeVertices();
- geometry2.computeFaceNormals();
- var sourceVertices = geometry2.vertices;
- var faces = geometry2.faces;
- // now create a data structure where each entry represents an edge with its adjoining faces
- for ( var i = 0, l = faces.length; i < l; i ++ ) {
- var face = faces[ i ];
- for ( var j = 0; j < 3; j ++ ) {
- edge1 = face[ keys[ j ] ];
- edge2 = face[ keys[ ( j + 1 ) % 3 ] ];
- edge[ 0 ] = Math.min( edge1, edge2 );
- edge[ 1 ] = Math.max( edge1, edge2 );
- key = edge[ 0 ] + ',' + edge[ 1 ];
- if ( edges[ key ] === undefined ) {
- edges[ key ] = { index1: edge[ 0 ], index2: edge[ 1 ], face1: i, face2: undefined };
- } else {
- edges[ key ].face2 = i;
- }
- }
- }
- // generate vertices
- for ( key in edges ) {
- var e = edges[ key ];
- // an edge is only rendered if the angle (in degrees) between the face normals of the adjoining faces exceeds this value. default = 1 degree.
- if ( e.face2 === undefined || faces[ e.face1 ].normal.dot( faces[ e.face2 ].normal ) <= thresholdDot ) {
- var vertex = sourceVertices[ e.index1 ];
- vertices.push( vertex.x, vertex.y, vertex.z );
- vertex = sourceVertices[ e.index2 ];
- vertices.push( vertex.x, vertex.y, vertex.z );
- }
- }
- // build geometry
- this.addAttribute( 'position', new Float32BufferAttribute( vertices, 3 ) );
- }
- EdgesGeometry.prototype = Object.create( BufferGeometry.prototype );
- EdgesGeometry.prototype.constructor = EdgesGeometry;
- export { EdgesGeometry };
|