123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295 |
- import { Geometry } from './Geometry';
- import { EventDispatcher } from './EventDispatcher';
- import { Vector2 } from '../math/Vector2';
- import { _Math } from '../math/Math';
- import { GeometryIdCount } from './Geometry';
- /**
- * @author mrdoob / http://mrdoob.com/
- */
- function DirectGeometry() {
- Object.defineProperty( this, 'id', { value: GeometryIdCount() } );
- this.uuid = _Math.generateUUID();
- this.name = '';
- this.type = 'DirectGeometry';
- this.indices = [];
- this.vertices = [];
- this.normals = [];
- this.colors = [];
- this.uvs = [];
- this.uvs2 = [];
- this.groups = [];
- this.morphTargets = {};
- this.skinWeights = [];
- this.skinIndices = [];
- // this.lineDistances = [];
- this.boundingBox = null;
- this.boundingSphere = null;
- // update flags
- this.verticesNeedUpdate = false;
- this.normalsNeedUpdate = false;
- this.colorsNeedUpdate = false;
- this.uvsNeedUpdate = false;
- this.groupsNeedUpdate = false;
- }
- Object.assign( DirectGeometry.prototype, EventDispatcher.prototype, {
- computeBoundingBox: Geometry.prototype.computeBoundingBox,
- computeBoundingSphere: Geometry.prototype.computeBoundingSphere,
- computeFaceNormals: function () {
- console.warn( 'THREE.DirectGeometry: computeFaceNormals() is not a method of this type of geometry.' );
- },
- computeVertexNormals: function () {
- console.warn( 'THREE.DirectGeometry: computeVertexNormals() is not a method of this type of geometry.' );
- },
- computeGroups: function ( geometry ) {
- var group;
- var groups = [];
- var materialIndex;
- var faces = geometry.faces;
- for ( var i = 0; i < faces.length; i ++ ) {
- var face = faces[ i ];
- // materials
- if ( face.materialIndex !== materialIndex ) {
- materialIndex = face.materialIndex;
- if ( group !== undefined ) {
- group.count = ( i * 3 ) - group.start;
- groups.push( group );
- }
- group = {
- start: i * 3,
- materialIndex: materialIndex
- };
- }
- }
- if ( group !== undefined ) {
- group.count = ( i * 3 ) - group.start;
- groups.push( group );
- }
- this.groups = groups;
- },
- fromGeometry: function ( geometry ) {
- var faces = geometry.faces;
- var vertices = geometry.vertices;
- var faceVertexUvs = geometry.faceVertexUvs;
- var hasFaceVertexUv = faceVertexUvs[ 0 ] && faceVertexUvs[ 0 ].length > 0;
- var hasFaceVertexUv2 = faceVertexUvs[ 1 ] && faceVertexUvs[ 1 ].length > 0;
- // morphs
- var morphTargets = geometry.morphTargets;
- var morphTargetsLength = morphTargets.length;
- var morphTargetsPosition;
- if ( morphTargetsLength > 0 ) {
- morphTargetsPosition = [];
- for ( var i = 0; i < morphTargetsLength; i ++ ) {
- morphTargetsPosition[ i ] = [];
- }
- this.morphTargets.position = morphTargetsPosition;
- }
- var morphNormals = geometry.morphNormals;
- var morphNormalsLength = morphNormals.length;
- var morphTargetsNormal;
- if ( morphNormalsLength > 0 ) {
- morphTargetsNormal = [];
- for ( var i = 0; i < morphNormalsLength; i ++ ) {
- morphTargetsNormal[ i ] = [];
- }
- this.morphTargets.normal = morphTargetsNormal;
- }
- // skins
- var skinIndices = geometry.skinIndices;
- var skinWeights = geometry.skinWeights;
- var hasSkinIndices = skinIndices.length === vertices.length;
- var hasSkinWeights = skinWeights.length === vertices.length;
- //
- for ( var i = 0; i < faces.length; i ++ ) {
- var face = faces[ i ];
- this.vertices.push( vertices[ face.a ], vertices[ face.b ], vertices[ face.c ] );
- var vertexNormals = face.vertexNormals;
- if ( vertexNormals.length === 3 ) {
- this.normals.push( vertexNormals[ 0 ], vertexNormals[ 1 ], vertexNormals[ 2 ] );
- } else {
- var normal = face.normal;
- this.normals.push( normal, normal, normal );
- }
- var vertexColors = face.vertexColors;
- if ( vertexColors.length === 3 ) {
- this.colors.push( vertexColors[ 0 ], vertexColors[ 1 ], vertexColors[ 2 ] );
- } else {
- var color = face.color;
- this.colors.push( color, color, color );
- }
- if ( hasFaceVertexUv === true ) {
- var vertexUvs = faceVertexUvs[ 0 ][ i ];
- if ( vertexUvs !== undefined ) {
- this.uvs.push( vertexUvs[ 0 ], vertexUvs[ 1 ], vertexUvs[ 2 ] );
- } else {
- console.warn( 'THREE.DirectGeometry.fromGeometry(): Undefined vertexUv ', i );
- this.uvs.push( new Vector2(), new Vector2(), new Vector2() );
- }
- }
- if ( hasFaceVertexUv2 === true ) {
- var vertexUvs = faceVertexUvs[ 1 ][ i ];
- if ( vertexUvs !== undefined ) {
- this.uvs2.push( vertexUvs[ 0 ], vertexUvs[ 1 ], vertexUvs[ 2 ] );
- } else {
- console.warn( 'THREE.DirectGeometry.fromGeometry(): Undefined vertexUv2 ', i );
- this.uvs2.push( new Vector2(), new Vector2(), new Vector2() );
- }
- }
- // morphs
- for ( var j = 0; j < morphTargetsLength; j ++ ) {
- var morphTarget = morphTargets[ j ].vertices;
- morphTargetsPosition[ j ].push( morphTarget[ face.a ], morphTarget[ face.b ], morphTarget[ face.c ] );
- }
- for ( var j = 0; j < morphNormalsLength; j ++ ) {
- var morphNormal = morphNormals[ j ].vertexNormals[ i ];
- morphTargetsNormal[ j ].push( morphNormal.a, morphNormal.b, morphNormal.c );
- }
- // skins
- if ( hasSkinIndices ) {
- this.skinIndices.push( skinIndices[ face.a ], skinIndices[ face.b ], skinIndices[ face.c ] );
- }
- if ( hasSkinWeights ) {
- this.skinWeights.push( skinWeights[ face.a ], skinWeights[ face.b ], skinWeights[ face.c ] );
- }
- }
- this.computeGroups( geometry );
- this.verticesNeedUpdate = geometry.verticesNeedUpdate;
- this.normalsNeedUpdate = geometry.normalsNeedUpdate;
- this.colorsNeedUpdate = geometry.colorsNeedUpdate;
- this.uvsNeedUpdate = geometry.uvsNeedUpdate;
- this.groupsNeedUpdate = geometry.groupsNeedUpdate;
- return this;
- },
- dispose: function () {
- this.dispatchEvent( { type: 'dispose' } );
- }
- } );
- export { DirectGeometry };
|