content/hifi-content/dave/walk-tools/walkTools/libraries/three.js/extras/geometries/OctahedronGeometry.js
2022-02-13 22:49:05 +01:00

31 lines
733 B
JavaScript

/**
* @author timothypratley / https://github.com/timothypratley
*/
THREE.OctahedronGeometry = function ( radius, detail ) {
this.parameters = {
radius: radius,
detail: detail
};
var vertices = [
1, 0, 0, - 1, 0, 0, 0, 1, 0, 0,- 1, 0, 0, 0, 1, 0, 0,- 1
];
var indices = [
0, 2, 4, 0, 4, 3, 0, 3, 5, 0, 5, 2, 1, 2, 5, 1, 5, 3, 1, 3, 4, 1, 4, 2
];
THREE.PolyhedronGeometry.call( this, vertices, indices, radius, detail );
this.type = 'OctahedronGeometry';
this.parameters = {
radius: radius,
detail: detail
};
};
THREE.OctahedronGeometry.prototype = Object.create( THREE.Geometry.prototype );
THREE.OctahedronGeometry.prototype.constructor = THREE.OctahedronGeometry;