Source Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 |
<script src="../build/three.js"></script> <script src="js/WebGL.js"></script> <script src="js/libs/stats.min.js"></script> <script src="js/CurveExtras.js"></script> <script src="js/geometries/ParametricGeometries.js"></script> <script> if ( WEBGL.isWebGLAvailable() === false ) { document.body.appendChild( WEBGL.getWebGLErrorMessage() ); } var camera, scene, renderer, stats; init(); animate(); function init() { var container = document.getElementById( 'container' ); camera = new THREE.PerspectiveCamera( 45, window.innerWidth / window.innerHeight, 1, 2000 ); camera.position.y = 400; scene = new THREE.Scene(); // var ambientLight = new THREE.AmbientLight( 0xcccccc, 0.4 ); scene.add( ambientLight ); var pointLight = new THREE.PointLight( 0xffffff, 0.8 ); camera.add( pointLight ); scene.add( camera ); // var map = new THREE.TextureLoader().load( 'textures/UV_Grid_Sm.jpg' ); map.wrapS = map.wrapT = THREE.RepeatWrapping; map.anisotropy = 16; var material = new THREE.MeshPhongMaterial( { map: map, side: THREE.DoubleSide } ); // var geometry, object; geometry = new THREE.ParametricBufferGeometry( THREE.ParametricGeometries.plane( 100, 100 ), 10, 10 ); geometry.center(); object = new THREE.Mesh( geometry, material ); object.position.set( - 200, 0, 200 ); scene.add( object ); geometry = new THREE.ParametricBufferGeometry( THREE.ParametricGeometries.klein, 20, 20 ); object = new THREE.Mesh( geometry, material ); object.position.set( 0, 0, 200 ); object.scale.multiplyScalar( 5 ); scene.add( object ); geometry = new THREE.ParametricBufferGeometry( THREE.ParametricGeometries.mobius, 20, 20 ); object = new THREE.Mesh( geometry, material ); object.position.set( 200, 0, 200 ); object.scale.multiplyScalar( 30 ); scene.add( object ); // var GrannyKnot = new THREE.Curves.GrannyKnot(); var torus = new THREE.ParametricGeometries.TorusKnotGeometry( 50, 10, 50, 20, 2, 3 ); var sphere = new THREE.ParametricGeometries.SphereGeometry( 50, 20, 10 ); var tube = new THREE.ParametricGeometries.TubeGeometry( GrannyKnot, 100, 3, 8, true, false ); torus = new THREE.BufferGeometry().fromGeometry( torus ); sphere = new THREE.BufferGeometry().fromGeometry( sphere ); tube = new THREE.BufferGeometry().fromGeometry( tube ); object = new THREE.Mesh( torus, material ); object.position.set( - 200, 0, - 200 ); scene.add( object ); object = new THREE.Mesh( sphere, material ); object.position.set( 0, 0, - 200 ); scene.add( object ); object = new THREE.Mesh( tube, material ); object.position.set( 200, 0, - 200 ); object.scale.multiplyScalar( 2 ); scene.add( object ); // renderer = new THREE.WebGLRenderer( { antialias: true } ); renderer.setPixelRatio( window.devicePixelRatio ); renderer.setSize( window.innerWidth, window.innerHeight ); container.appendChild( renderer.domElement ); stats = new Stats(); container.appendChild( stats.dom ); window.addEventListener( 'resize', onWindowResize, false ); } 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() { var timer = Date.now() * 0.0001; camera.position.x = Math.cos( timer ) * 800; camera.position.z = Math.sin( timer ) * 800; camera.lookAt( scene.position ); scene.traverse( function ( object ) { if ( object.isMesh === true ) { object.rotation.x = timer * 5; object.rotation.y = timer * 2.5; } } ); renderer.render( scene, camera ); } </script> Source URL: https://github.com/mrdoob/three.js/blob/master/examples/webgl_geometries_parametric.html |
2013). Incubation and creativity: Do something different. Thinking and Reasoning
. (Plain numerical DOI: 10.1080/13546783.2012.749812
DOI URL
directSciHub download
Show/hide publication abstract
2008). Alexithymia – Imagination – Creativity. Personality and Individual Differences
. (Plain numerical DOI: 10.1016/j.paid.2008.05.019
DOI URL
directSciHub download
Show/hide publication abstract
2014). Vividness and Control of Mental Imagery and the Components of In-Depth Drawing. Creativity Research Journal
. (Plain numerical DOI: 10.1080/10400419.2014.901097
DOI URL
directSciHub download
Show/hide publication abstract
2018). Object-spatial imagery in fine arts, psychology, and engineering. Thinking Skills and Creativity
. (Plain numerical DOI: 10.1016/j.tsc.2017.12.005
DOI URL
directSciHub download
Show/hide publication abstract
2002). How well do we know our own conscious experience? The case of visual imagery. Journal of Consciousness Studies
. (Show/hide publication abstract
2010). Enabling WebGL
. (Plain numerical DOI: 10.1145/1772690.1772933
DOI URL
directSciHub download
Show/hide publication abstract
2012). WebGL up and running. O’Reilly
. (Plain numerical DOI: 10.1017/CBO9781107415324.004
DOI URL
directSciHub download
Show/hide publication abstract
2013). WebGL Programming Guide: Interactive 3D Graphics Programming with WebGL (OpenGL). Interactive 3D Graphics Programming with WebGL
. (Show/hide publication abstract
OpenGL Insights. (2012). OpenGL Insights
Plain numerical DOI: 10.1201/b12288
DOI URL
directSciHub download
Show/hide publication abstract
2016). 3D Visualization Using OpenGL. R Package Version 0.95.1441
. (Show/hide publication abstract
2011). Interactive visualization of volumetric data with WebGL in real-time
. (Plain numerical DOI: 10.1145/2010425.2010449
DOI URL
directSciHub download