Files
apt-nl-map/static/Magic4/js/three.js-dev/examples/webgl_loader_svg.html
2024-12-04 10:21:04 +08:00

256 lines
6.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>three.js webgl - svg loader</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: #b0b0b0;
}
</style>
</head>
<body>
<div id="container"></div>
<div id="info">
<a href="https://threejs.org" target="_blank" rel="noopener">three.js</a> - SVGLoader
</div>
<script type="module">
import * as THREE from '../build/three.module.js';
import Stats from './jsm/libs/stats.module.js';
import { GUI } from './jsm/libs/dat.gui.module.js';
import { OrbitControls } from './jsm/controls/OrbitControls.js';
import { SVGLoader } from './jsm/loaders/SVGLoader.js';
let renderer, stats, scene, camera, gui, guiData;
init();
animate();
//
function init() {
const container = document.getElementById( 'container' );
//
camera = new THREE.PerspectiveCamera( 50, window.innerWidth / window.innerHeight, 1, 1000 );
camera.position.set( 0, 0, 200 );
//
renderer = new THREE.WebGLRenderer( { antialias: true } );
renderer.setPixelRatio( window.devicePixelRatio );
renderer.setSize( window.innerWidth, window.innerHeight );
container.appendChild( renderer.domElement );
//
const controls = new OrbitControls( camera, renderer.domElement );
controls.screenSpacePanning = true;
//
stats = new Stats();
container.appendChild( stats.dom );
//
window.addEventListener( 'resize', onWindowResize );
guiData = {
currentURL: 'models/svg/tiger.svg',
drawFillShapes: true,
drawStrokes: true,
fillShapesWireframe: false,
strokesWireframe: false
};
loadSVG( guiData.currentURL );
createGUI();
}
function createGUI() {
if ( gui ) gui.destroy();
gui = new GUI( { width: 350 } );
gui.add( guiData, 'currentURL', {
"Tiger": 'models/svg/tiger.svg',
"Three.js": 'models/svg/threejs.svg',
"Joins and caps": 'models/svg/lineJoinsAndCaps.svg',
"Hexagon": 'models/svg/hexagon.svg',
"Energy": 'models/svg/energy.svg',
"Test 1": 'models/svg/tests/1.svg',
"Test 2": 'models/svg/tests/2.svg',
"Test 3": 'models/svg/tests/3.svg',
"Test 4": 'models/svg/tests/4.svg',
"Test 5": 'models/svg/tests/5.svg',
"Test 6": 'models/svg/tests/6.svg',
"Test 7": 'models/svg/tests/7.svg',
"Test 8": 'models/svg/tests/8.svg',
"Test 9": 'models/svg/tests/9.svg',
"Units": 'models/svg/tests/units.svg',
"Defs": 'models/svg/tests/testDefs/Svg-defs.svg',
"Defs2": 'models/svg/tests/testDefs/Svg-defs2.svg',
"Defs3": 'models/svg/tests/testDefs/Wave-defs.svg',
"Defs4": 'models/svg/tests/testDefs/defs4.svg',
"Defs5": 'models/svg/tests/testDefs/defs5.svg',
"Zero Radius": 'models/svg/zero-radius.svg'
} ).name( 'SVG File' ).onChange( update );
gui.add( guiData, 'drawStrokes' ).name( 'Draw strokes' ).onChange( update );
gui.add( guiData, 'drawFillShapes' ).name( 'Draw fill shapes' ).onChange( update );
gui.add( guiData, 'strokesWireframe' ).name( 'Wireframe strokes' ).onChange( update );
gui.add( guiData, 'fillShapesWireframe' ).name( 'Wireframe fill shapes' ).onChange( update );
function update() {
loadSVG( guiData.currentURL );
}
}
function loadSVG( url ) {
//
scene = new THREE.Scene();
scene.background = new THREE.Color( 0xb0b0b0 );
//
const helper = new THREE.GridHelper( 160, 10 );
helper.rotation.x = Math.PI / 2;
scene.add( helper );
//
const loader = new SVGLoader();
loader.load( url, function ( data ) {
const paths = data.paths;
const group = new THREE.Group();
group.scale.multiplyScalar( 0.25 );
group.position.x = - 70;
group.position.y = 70;
group.scale.y *= - 1;
for ( let i = 0; i < paths.length; i ++ ) {
const path = paths[ i ];
const fillColor = path.userData.style.fill;
if ( guiData.drawFillShapes && fillColor !== undefined && fillColor !== 'none' ) {
const material = new THREE.MeshBasicMaterial( {
color: new THREE.Color().setStyle( fillColor ),
opacity: path.userData.style.fillOpacity,
transparent: path.userData.style.fillOpacity < 1,
side: THREE.DoubleSide,
depthWrite: false,
wireframe: guiData.fillShapesWireframe
} );
const shapes = SVGLoader.createShapes( path );
for ( let j = 0; j < shapes.length; j ++ ) {
const shape = shapes[ j ];
const geometry = new THREE.ShapeGeometry( shape );
const mesh = new THREE.Mesh( geometry, material );
group.add( mesh );
}
}
const strokeColor = path.userData.style.stroke;
if ( guiData.drawStrokes && strokeColor !== undefined && strokeColor !== 'none' ) {
const material = new THREE.MeshBasicMaterial( {
color: new THREE.Color().setStyle( strokeColor ),
opacity: path.userData.style.strokeOpacity,
transparent: path.userData.style.strokeOpacity < 1,
side: THREE.DoubleSide,
depthWrite: false,
wireframe: guiData.strokesWireframe
} );
for ( let j = 0, jl = path.subPaths.length; j < jl; j ++ ) {
const subPath = path.subPaths[ j ];
const geometry = SVGLoader.pointsToStroke( subPath.getPoints(), path.userData.style );
if ( geometry ) {
const mesh = new THREE.Mesh( geometry, material );
group.add( mesh );
}
}
}
}
scene.add( group );
} );
}
function onWindowResize() {
camera.aspect = window.innerWidth / window.innerHeight;
camera.updateProjectionMatrix();
renderer.setSize( window.innerWidth, window.innerHeight );
}
function animate() {
requestAnimationFrame( animate );
render();
stats.update();
}
function render() {
renderer.render( scene, camera );
}
</script>
</body>
</html>