Skip to content

Commit

Permalink
Merge pull request #1 from koober/koober-text-example
Browse files Browse the repository at this point in the history
Create webgl_geometry_text_shapes.html
  • Loading branch information
koober authored Feb 18, 2017
2 parents 8e4507d + 623b672 commit dd0ee41
Showing 1 changed file with 162 additions and 0 deletions.
162 changes: 162 additions & 0 deletions examples/webgl_geometry_text_shapes.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,162 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>three.js webgl - Simple text from json</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<style>
body {
font-family: Monospace;
background-color: #f0f0f0;
margin: 0px;
overflow: hidden;
}
#info {
position: absolute;
top: 10px;
width: 100%;
text-align: center;
}
</style>
</head>
<body>
<div id="info">
<a href="http://threejs.org" target="_blank">three.js</a> webgl - Simple text from json fonts.
</div>

<script src="../build/three.js"></script>
<script src="js/controls/OrbitControls.js"></script>

<script>

var camera, scene, renderer, controls;

init();
animate();

function init( ) {

camera = new THREE.PerspectiveCamera( 45, window.innerWidth / window.innerHeight, 1, 10000 );
camera.position.set( 0, - 400, 600 );

controls = new THREE.OrbitControls( camera );
controls.target.set( 0, 0, 0 );

scene = new THREE.Scene();

var loader = new THREE.FontLoader();
loader.load( 'fonts/helvetiker_regular.typeface.json', function ( font ) {

var xMid, text;

var textShape = new THREE.BufferGeometry();

var color = 0x006699;

var matDark = new THREE.MeshBasicMaterial( {
color: color,
side: THREE.DoubleSide
} );

var matLite = new THREE.MeshBasicMaterial( {
color: color,
transparent: true,
opacity: 0.4,
side: THREE.DoubleSide
} );

var message = " Three.js\nSimple text.";

var shapes = font.generateShapes( message, 100, 2 );

var geometry = new THREE.ShapeGeometry( shapes );

geometry.computeBoundingBox();

xMid = - 0.5 * ( geometry.boundingBox.max.x - geometry.boundingBox.min.x );

xMove( geometry, xMid );

// make shape ( N.B. edge view not visible )

textShape.fromGeometry( geometry );

text = new THREE.Mesh( textShape, matLite );
text.position.z = - 150;
scene.add( text );

// make line shape ( N.B. edge view remains visible )

var lineText = new THREE.Object3D();

for ( var i = 0; i < shapes.length; i ++ ) {

var shape = shapes[ i ];

var lineGeometry = shape.createPointsGeometry();

xMove( lineGeometry, xMid );

var lineMesh = new THREE.Line( lineGeometry, matDark );
lineText.add( lineMesh );

if ( shape.holes && shape.holes.length > 0 ) {

for ( var j = 0; j < shape.holes.length; j ++ ) {

var hole = shape.holes[ j ];
shapes.push( hole );

}

}

}

scene.add( lineText );

} ); //end load function

renderer = new THREE.WebGLRenderer( { antialias: true } );
renderer.setClearColor( 0xf0f0f0 );
renderer.setSize( window.innerWidth, window.innerHeight );
document.body.appendChild( renderer.domElement );

window.addEventListener( 'resize', onWindowResize, false );

} // end init

function xMove( shape, shapeMid ) {

return shape.applyMatrix( new THREE.Matrix4().makeTranslation( shapeMid, 0, 0 ) );

}

function onWindowResize() {

camera.aspect = window.innerWidth / window.innerHeight;
camera.updateProjectionMatrix();

renderer.setSize( window.innerWidth, window.innerHeight );

}

function animate() {

requestAnimationFrame( animate );

render();

}

function render() {

controls.update();
renderer.render( scene, camera );

}

</script>

</body>
</html>

0 comments on commit dd0ee41

Please sign in to comment.