代码拉取完成,页面将自动刷新
同步操作将从 three.js/three-weixin-demo 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
import * as THREE from 'three';
const {
document,
window,
HTMLCanvasElement,
requestAnimationFrame,
cancelAnimationFrame,
core,
Event,
Event0
} = THREE .DHTML
import Stats from 'three/examples/jsm/libs/stats.module.js';
import { GUI } from 'three/examples/jsm/libs/lil-gui.module.min.js';
import { OrbitControls } from 'three/examples/jsm/controls/OrbitControls.js';
import { OrbitControls0 } from 'three/examples/jsm/controls/OrbitControls0.js';
import * as BufferGeometryUtils from 'three/examples/jsm/utils/BufferGeometryUtils.js';
var requestId
Page({
onUnload() {
cancelAnimationFrame(requestId, this.canvas)
this.worker && this.worker.terminate()
if(this.canvas) this.canvas = null
setTimeout(() => {
if (this.renderer instanceof THREE.WebGLRenderer) {
this.renderer.dispose()
this.renderer.forceContextLoss()
this.renderer.context = null
this.renderer.domElement = null
this.renderer = null
}
}, 10)
},
webgl_touch(e){
const web_e = (window.platform=="devtools"?Event:Event0).fix(e)
this.canvas.dispatchEvent(web_e)
},
onLoad() {
document.createElementAsync("canvas", "webgl2",this).then(canvas => {
this.canvas = canvas
this.body_load(canvas).then()
})
},
async body_load(canvas3d) {
let container, stats, gui, guiStatsEl;
let camera, controls, scene, renderer, material;
// gui
const Method = {
INSTANCED: 'INSTANCED',
MERGED: 'MERGED',
NAIVE: 'NAIVE'
};
const api = {
method: Method.INSTANCED,
count: 1000
};
//
init();
initMesh();
animate();
//
function clean() {
const meshes = [];
scene.traverse( function ( object ) {
if ( object.isMesh ) meshes.push( object );
} );
for ( let i = 0; i < meshes.length; i ++ ) {
const mesh = meshes[ i ];
mesh.material.dispose();
mesh.geometry.dispose();
scene.remove( mesh );
}
}
const randomizeMatrix = function () {
const position = new THREE.Vector3();
const quaternion = new THREE.Quaternion();
const scale = new THREE.Vector3();
return function ( matrix ) {
position.x = Math.random() * 40 - 20;
position.y = Math.random() * 40 - 20;
position.z = Math.random() * 40 - 20;
quaternion.random();
scale.x = scale.y = scale.z = Math.random() * 1;
matrix.compose( position, quaternion, scale );
};
}();
function initMesh() {
clean();
// make instances
new THREE.BufferGeometryLoader()
.setPath( 'models/json/' )
.load( 'suzanne_buffergeometry.json', function ( geometry ) {
material = new THREE.MeshNormalMaterial();
geometry.computeVertexNormals();
console.time( api.method + ' (build)' );
switch ( api.method ) {
case Method.INSTANCED:
makeInstanced( geometry );
break;
case Method.MERGED:
makeMerged( geometry );
break;
case Method.NAIVE:
makeNaive( geometry );
break;
}
console.timeEnd( api.method + ' (build)' );
} );
}
function makeInstanced( geometry ) {
const matrix = new THREE.Matrix4();
const mesh = new THREE.InstancedMesh( geometry, material, api.count );
for ( let i = 0; i < api.count; i ++ ) {
randomizeMatrix( matrix );
mesh.setMatrixAt( i, matrix );
}
scene.add( mesh );
//
const geometryByteLength = getGeometryByteLength( geometry );
guiStatsEl.innerHTML = [
'<i>GPU draw calls</i>: 1',
'<i>GPU memory</i>: ' + formatBytes( api.count * 16 + geometryByteLength, 2 )
].join( '<br/>' );
}
function makeMerged( geometry ) {
const geometries = [];
const matrix = new THREE.Matrix4();
for ( let i = 0; i < api.count; i ++ ) {
randomizeMatrix( matrix );
const instanceGeometry = geometry.clone();
instanceGeometry.applyMatrix4( matrix );
geometries.push( instanceGeometry );
}
const mergedGeometry = BufferGeometryUtils.mergeGeometries( geometries );
scene.add( new THREE.Mesh( mergedGeometry, material ) );
//
guiStatsEl.innerHTML = [
'<i>GPU draw calls</i>: 1',
'<i>GPU memory</i>: ' + formatBytes( getGeometryByteLength( mergedGeometry ), 2 )
].join( '<br/>' );
}
function makeNaive( geometry ) {
const matrix = new THREE.Matrix4();
for ( let i = 0; i < api.count; i ++ ) {
randomizeMatrix( matrix );
const mesh = new THREE.Mesh( geometry, material );
mesh.applyMatrix4( matrix );
scene.add( mesh );
}
//
const geometryByteLength = getGeometryByteLength( geometry );
guiStatsEl.innerHTML = [
'<i>GPU draw calls</i>: ' + api.count,
'<i>GPU memory</i>: ' + formatBytes( api.count * 16 + geometryByteLength, 2 )
].join( '<br/>' );
}
function init() {
const width = window.innerWidth;
const height = window.innerHeight;
// camera
camera = new THREE.PerspectiveCamera( 70, width / height, 1, 100 );
camera.position.z = 30;
// renderer
renderer = new THREE.WebGLRenderer( { antialias: true } );
renderer.setPixelRatio( window.devicePixelRatio );
renderer.setSize( width, height );
container = document.getElementById( 'container' );
container.appendChild( renderer.domElement );
// scene
scene = new THREE.Scene();
scene.background = new THREE.Color( 0xffffff );
// controls
controls = new (window.platform=="devtools"?OrbitControls:OrbitControls0)( camera, renderer.domElement );
controls.autoRotate = true;
// stats
stats = new Stats();
container.appendChild( stats.dom );
// gui
gui = new GUI();
gui.add( api, 'method', Method ).onChange( initMesh );
gui.add( api, 'count', 1, 10000 ).step( 1 ).onChange( initMesh );
const perfFolder = gui.addFolder( 'Performance' );
guiStatsEl = document.createElement( 'div' );
guiStatsEl.classList.add( 'gui-stats' );
perfFolder.$children.appendChild( guiStatsEl );
perfFolder.open();
// listeners
window.addEventListener( 'resize', onWindowResize );
Object.assign( window, { scene } );
}
//
function onWindowResize() {
const width = window.innerWidth;
const height = window.innerHeight;
camera.aspect = width / height;
camera.updateProjectionMatrix();
renderer.setSize( width, height );
}
function animate() {
requestId = requestAnimationFrame( animate );
controls.update();
stats.update();
render();
}
function render() {
renderer.render( scene, camera );
}
//
function getGeometryByteLength( geometry ) {
let total = 0;
if ( geometry.index ) total += geometry.index.array.byteLength;
for ( const name in geometry.attributes ) {
total += geometry.attributes[ name ].array.byteLength;
}
return total;
}
// Source: https://stackoverflow.com/a/18650828/1314762
function formatBytes( bytes, decimals ) {
if ( bytes === 0 ) return '0 bytes';
const k = 1024;
const dm = decimals < 0 ? 0 : decimals;
const sizes = [ 'bytes', 'KB', 'MB' ];
const i = Math.floor( Math.log( bytes ) / Math.log( k ) );
return parseFloat( ( bytes / Math.pow( k, i ) ).toFixed( dm ) ) + ' ' + sizes[ i ];
}
}
})
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。