12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <!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:Geometry] →
- <h1>[name]</h1>
- <p class="desc">A class for generating plane geometries</p>
- <iframe id="scene" src="scenes/geometry-browser.html#PlaneGeometry"></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.PlaneGeometry( 5, 20, 32 );
- var material = new THREE.MeshBasicMaterial( {color: 0xffff00, side: THREE.DoubleSide} );
- var plane = new THREE.Mesh( geometry, material );
- scene.add( plane );
- </code>
- <h2>Constructor</h2>
- <h3>[name]([param:Float width], [param:Float height], [param:Integer widthSegments], [param:Integer heightSegments])</h3>
- <p>
- width — Width along the X axis. Default is 1.<br />
- height — Height along the Y axis. Default is 1.<br />
- widthSegments — Optional. Default is 1. <br />
- heightSegments — Optional. Default is 1.
- </p>
- <h2>Properties</h2>
- <h3>.parameters</h3>
- <p>
- An object with a property for each of the constructor parameters. Any modification after instantiation does not change the geometry.
- </p>
- <h2>Source</h2>
- [link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]
- </body>
- </html>
|