1chandu f05c63a0aa
Doc links (#521)
* Docs: Fix hyperlinks
* Update website link generation
* Replace website links with actual file path
2018-05-24 11:08:10 -07:00

23 lines
496 B
Markdown

# Cube
Create a white cube model. Inherits methods from [`Model`](/docs/api-reference/core/model.md)
## Usage
```js
var whiteCube = new Cube(gl, {
colors: [1, 1, 1, 1]
});
```
## Method
### constructor
Creates a Cube model. Inherits methods from [`Model`](/docs/api-reference/core/model.md).
Use this to create a new Cube. Accepts the same properties and options as Model constructor but has preset for `vertices`, `normals` and `indices`.
`var model = new Cube(gl, options);`