123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <title>three.js WebGL - postprocessing - FXAA</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">
- <style>
- body {
- background-color: #fff;
- color: #222;
- }
- a {
- color: #08f;
- }
- #container {
- position: absolute;
- top: 80px;
- width: 100%;
- bottom: 0px;
- }
- </style>
- </head>
- <body>
- <div id="info">
- <a href="https://threejs.org" target="_blank" rel="noopener">three.js</a> - postprocessing - FXAA<br />
- Left scene processed with FXAA, right scene is rendered without anti-aliasing.
- </div>
- <div id="container">
- </div>
- <script type="module">
- import * as THREE from '../build/three.module.js';
- import { EffectComposer } from './jsm/postprocessing/EffectComposer.js';
- import { RenderPass } from './jsm/postprocessing/RenderPass.js';
- import { ShaderPass } from './jsm/postprocessing/ShaderPass.js';
- import { CopyShader } from './jsm/shaders/CopyShader.js';
- import { FXAAShader } from './jsm/shaders/FXAAShader.js';
- var camera, scene, renderer, clock, group, container;
- var composer1, composer2, fxaaPass;
- init();
- animate();
- function init() {
- container = document.getElementById( 'container' );
- camera = new THREE.PerspectiveCamera( 45, ( container.offsetWidth * 0.5 ) / container.offsetHeight, 1, 2000 );
- camera.position.z = 500;
- scene = new THREE.Scene();
- scene.background = new THREE.Color( 0xffffff );
- scene.fog = new THREE.Fog( 0xcccccc, 100, 1500 );
- clock = new THREE.Clock();
- //
- var hemiLight = new THREE.HemisphereLight( 0xffffff, 0x444444 );
- hemiLight.position.set( 0, 1000, 0 );
- scene.add( hemiLight );
- var dirLight = new THREE.DirectionalLight( 0xffffff, 0.8 );
- dirLight.position.set( - 3000, 1000, - 1000 );
- scene.add( dirLight );
- //
- group = new THREE.Group();
- var geometry = new THREE.TetrahedronBufferGeometry( 10 );
- var material = new THREE.MeshStandardMaterial( { color: 0xee0808, flatShading: true } );
- for ( var i = 0; i < 100; i ++ ) {
- var mesh = new THREE.Mesh( geometry, material );
- mesh.position.x = Math.random() * 500 - 250;
- mesh.position.y = Math.random() * 500 - 250;
- mesh.position.z = Math.random() * 500 - 250;
- mesh.scale.setScalar( Math.random() * 2 + 1 );
- mesh.rotation.x = Math.random() * Math.PI;
- mesh.rotation.y = Math.random() * Math.PI;
- mesh.rotation.z = Math.random() * Math.PI;
- group.add( mesh );
- }
- scene.add( group );
- //
- renderer = new THREE.WebGLRenderer();
- renderer.autoClear = false;
- renderer.setPixelRatio( window.devicePixelRatio );
- renderer.setSize( container.offsetWidth, container.offsetHeight );
- container.appendChild( renderer.domElement );
- //
- var renderPass = new RenderPass( scene, camera );
- //
- fxaaPass = new ShaderPass( FXAAShader );
- var pixelRatio = renderer.getPixelRatio();
- fxaaPass.material.uniforms[ 'resolution' ].value.x = 1 / ( container.offsetWidth * pixelRatio );
- fxaaPass.material.uniforms[ 'resolution' ].value.y = 1 / ( container.offsetHeight * pixelRatio );
- composer1 = new EffectComposer( renderer );
- composer1.addPass( renderPass );
- composer1.addPass( fxaaPass );
- //
- var copyPass = new ShaderPass( CopyShader );
- composer2 = new EffectComposer( renderer );
- composer2.addPass( renderPass );
- composer2.addPass( copyPass );
- //
- window.addEventListener( 'resize', onWindowResize, false );
- }
- function onWindowResize() {
- camera.aspect = ( container.offsetWidth * 0.5 ) / container.offsetHeight;
- camera.updateProjectionMatrix();
- renderer.setSize( container.offsetWidth, container.offsetHeight );
- composer1.setSize( container.offsetWidth, container.offsetHeight );
- composer2.setSize( container.offsetWidth, container.offsetHeight );
- var pixelRatio = renderer.getPixelRatio();
- fxaaPass.material.uniforms[ 'resolution' ].value.x = 1 / ( container.offsetWidth * pixelRatio );
- fxaaPass.material.uniforms[ 'resolution' ].value.y = 1 / ( container.offsetHeight * pixelRatio );
- }
- function animate() {
- requestAnimationFrame( animate );
- var halfWidth = container.offsetWidth / 2;
- group.rotation.y += clock.getDelta() * 0.1;
- renderer.setViewport( 0, 0, halfWidth, container.offsetHeight );
- composer1.render();
- renderer.setViewport( halfWidth, 0, halfWidth, container.offsetHeight );
- composer2.render();
- }
- </script>
- </body>
- </html>
|