You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
earthquake_3d_viewer_front/three/examples/webgpu_compute_points.html

195 lines
5.2 KiB
HTML

<html lang="en">
<head>
<title>three.js - WebGPU - Compute</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<link type="text/css" rel="stylesheet" href="main.css">
</head>
<body>
<div id="info">
<a href="https://threejs.org" target="_blank" rel="noopener">three.js</a> WebGPU - Compute - 300000 Points
</div>
<script type="importmap">
{
"imports": {
"three": "../build/three.webgpu.js",
"three/webgpu": "../build/three.webgpu.js",
"three/tsl": "../build/three.tsl.js",
"three/addons/": "./jsm/",
"stats-gl": "https://cdn.jsdelivr.net/npm/stats-gl@3.6.0/dist/main.js"
}
}
</script>
<script type="module">
import * as THREE from 'three';
import Stats from 'stats-gl';
import { Fn, uniform, instancedArray, float, vec2, vec3, color, instanceIndex } from 'three/tsl';
import { GUI } from 'three/addons/libs/lil-gui.module.min.js';
let camera, scene, renderer, stats;
let computeNode;
const pointerVector = new THREE.Vector2( - 10.0, - 10.0 ); // Out of bounds first
const scaleVector = new THREE.Vector2( 1, 1 );
init();
function init() {
camera = new THREE.OrthographicCamera( - 1.0, 1.0, 1.0, - 1.0, 0, 1 );
camera.position.z = 1;
scene = new THREE.Scene();
// initialize particles
const particlesCount = 300000;
const particleArray = instancedArray( particlesCount, 'vec2' );
const velocityArray = instancedArray( particlesCount, 'vec2' );
// create function
const computeShaderFn = Fn( () => {
const particle = particleArray.element( instanceIndex );
const velocity = velocityArray.element( instanceIndex );
const pointer = uniform( pointerVector );
const limit = uniform( scaleVector );
const position = particle.add( velocity ).toVar();
velocity.x = position.x.abs().greaterThanEqual( limit.x ).select( velocity.x.negate(), velocity.x );
velocity.y = position.y.abs().greaterThanEqual( limit.y ).select( velocity.y.negate(), velocity.y );
position.assign( position.min( limit ).max( limit.negate() ) );
const pointerSize = 0.1;
const distanceFromPointer = pointer.sub( position ).length();
particle.assign( distanceFromPointer.lessThanEqual( pointerSize ).select( vec3(), position ) );
} );
// compute
computeNode = computeShaderFn().compute( particlesCount );
computeNode.onInit( ( { renderer } ) => {
const precomputeShaderNode = Fn( () => {
const particleIndex = float( instanceIndex );
const randomAngle = particleIndex.mul( .005 ).mul( Math.PI * 2 );
const randomSpeed = particleIndex.mul( 0.00000001 ).add( 0.0000001 );
const velX = randomAngle.sin().mul( randomSpeed );
const velY = randomAngle.cos().mul( randomSpeed );
const velocity = velocityArray.element( instanceIndex );
velocity.xy = vec2( velX, velY );
} );
renderer.computeAsync( precomputeShaderNode().compute( particlesCount ) );
} );
// use a compute shader to animate the point cloud's vertex data.
const pointsGeometry = new THREE.BufferGeometry();
pointsGeometry.setAttribute( 'position', new THREE.BufferAttribute( new Float32Array( 3 ), 3 ) ); // single vertex ( not triangle )
pointsGeometry.drawRange.count = 1; // force render points as instances ( not triangle )
const pointsMaterial = new THREE.PointsNodeMaterial();
pointsMaterial.colorNode = particleArray.element( instanceIndex ).add( color( 0xFFFFFF ) );
pointsMaterial.positionNode = particleArray.element( instanceIndex );
const mesh = new THREE.Points( pointsGeometry, pointsMaterial );
mesh.count = particlesCount;
scene.add( mesh );
renderer = new THREE.WebGPURenderer( { antialias: true } );
renderer.setPixelRatio( window.devicePixelRatio );
renderer.setSize( window.innerWidth, window.innerHeight );
renderer.setAnimationLoop( animate );
document.body.appendChild( renderer.domElement );
stats = new Stats( {
precision: 4,
horizontal: false,
trackGPU: true,
trackCPT: true,
logsPerSecond: 10,
graphsPerSecond: 60,
samplesGraph: 30,
} );
stats.init( renderer );
document.body.appendChild( stats.dom );
stats.dom.style.position = 'absolute';
window.addEventListener( 'resize', onWindowResize );
window.addEventListener( 'mousemove', onMouseMove );
// gui
const gui = new GUI();
gui.add( scaleVector, 'x', 0, 1, 0.01 );
gui.add( scaleVector, 'y', 0, 1, 0.01 );
}
function onWindowResize() {
camera.updateProjectionMatrix();
renderer.setSize( window.innerWidth, window.innerHeight );
}
function onMouseMove( event ) {
const x = event.clientX;
const y = event.clientY;
const width = window.innerWidth;
const height = window.innerHeight;
pointerVector.set(
( x / width - 0.5 ) * 2.0,
( - y / height + 0.5 ) * 2.0
);
}
function animate() {
renderer.compute( computeNode );
renderer.resolveTimestampsAsync( THREE.TimestampQuery.COMPUTE );
renderer.render( scene, camera );
renderer.resolveTimestampsAsync().then( () => {
stats.update();
} );
}
</script>
</body>
</html>