123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8" />
- <base href="../../../" />
- <script src="list.js"></script>
- <script src="page.js"></script>
- <link type="text/css" rel="stylesheet" href="page.css" />
- </head>
- <body>
- [page:BufferGeometry] →
- <h1>[name]</h1>
- <p class="desc">This is the [page:BufferGeometry] port of [page:BoxGeometry].</p>
- <iframe id="scene" src="scenes/geometry-browser.html#BoxBufferGeometry"></iframe>
- <script>
- // iOS iframe auto-resize workaround
- if ( /(iPad|iPhone|iPod)/g.test( navigator.userAgent ) ) {
- var scene = document.getElementById( 'scene' );
- scene.style.width = getComputedStyle( scene ).width;
- scene.style.height = getComputedStyle( scene ).height;
- scene.setAttribute( 'scrolling', 'no' );
- }
- </script>
- <h2>Example</h2>
- <code>var geometry = new THREE.BoxBufferGeometry( 1, 1, 1 );
- var material = new THREE.MeshBasicMaterial( {color: 0x00ff00} );
- var cube = new THREE.Mesh( geometry, material );
- scene.add( cube );
- </code>
- <h2>Constructor</h2>
- <h3>[name]([param:Float width], [param:Float height], [param:Float depth], [param:Integer widthSegments], [param:Integer heightSegments], [param:Integer depthSegments])</h3>
- <p>
- width — Width of the sides on the X axis. Default is 1.<br />
- height — Height of the sides on the Y axis. Default is 1.<br />
- depth — Depth of the sides on the Z axis. Default is 1.<br />
- widthSegments — Optional. Number of segmented faces along the width of the sides. Default is 1.<br />
- heightSegments — Optional. Number of segmented faces along the height of the sides. Default is 1.<br />
- depthSegments — Optional. Number of segmented faces along the depth of the sides. Default is 1.
- </p>
- <h2>Properties</h2>
- <h3>[property:Object parameters]</h3>
- <p>
- An object with a property for each of the constructor parameters. Any modification after instantiation does not change the geometry.
- </p>
- <p>
- Using the above example code above as our basis:
- <code>
- geometry.parameters; // outputs an object {width: 1, height: 1, depth: 1, widthSegments: undefined, heightSegments: undefined}
- cube.geometry.parameters; // as above
- cube.geometry.parameters.width; // === 1
- cube.geometry.parameters.widthSegments // === undefined.
- </code>
- </p>
- <h2>Source</h2>
- [link:https://github.com/mrdoob/three.js/blob/master/src/geometries/BoxGeometry.js src/geometries/BoxGeometry.js]
- </body>
- </html>
|