diff --git a/docs/api/en/geometries/BoxBufferGeometry.html b/docs/api/en/geometries/BoxBufferGeometry.html index 00e742692641ee76651c2c76f2d96068ab396931..fd279c5a4873733d6c6fc6f4fa4076ad11af91b5 100644 --- a/docs/api/en/geometries/BoxBufferGeometry.html +++ b/docs/api/en/geometries/BoxBufferGeometry.html @@ -44,29 +44,31 @@

[name]([param:Float width], [param:Float height], [param:Float depth], [param:Integer widthSegments], [param:Integer heightSegments], [param:Integer depthSegments])

- width — Width of the sides on the X axis. Default is 1.
- height — Height of the sides on the Y axis. Default is 1.
- depth — Depth of the sides on the Z axis. Default is 1.
- widthSegments — Optional. Number of segmented faces along the width of the sides. Default is 1.
- heightSegments — Optional. Number of segmented faces along the height of the sides. Default is 1.
- depthSegments — Optional. Number of segmented faces along the depth of the sides. Default is 1. + width — Width; that is, the length of the edges parallel to the X axis. Optional; defaults to 1.
+ height — Height; that is, the length of the edges parallel to the Y axis. Optional; defaults to 1.
+ depth — Depth; that is, the length of the edges parallel to the Z axis. Optional; defaults to 1.
+ widthSegments — Number of segmented rectangular faces along the width of the sides. Optional; defaults to 1.
+ heightSegments — Number of segmented rectangular faces along the height of the sides. Optional; defaults to 1.
+ depthSegments — Number of segmented rectangular faces along the depth of the sides. Optional; defaults to 1.

Properties

- +

[property:Object parameters]

An object with a property for each of the constructor parameters. Any modification after instantiation does not change the geometry.

- Using the above example code above as our basis: - - geometry.parameters; // outputs an object {width: 1, height: 1, depth: 1, widthSegments: undefined, heightSegments: undefined} + Using the above example: + + geometry.parameters; // {width: 1, height: 1, depth: 1, widthSegments: undefined, heightSegments: undefined, depthSegments: undefined} cube.geometry.parameters; // as above cube.geometry.parameters.width; // === 1 - cube.geometry.parameters.widthSegments // === undefined. - -

+ cube.geometry.parameters.widthSegments; // === undefined. + +

+ +

Methods

Source