123456789101112131415161718192021222324252627282930313233343536373839404142 |
- /**
- * @author sroucheray / http://sroucheray.org/
- * @author mrdoob / http://mrdoob.com/
- */
- import { LineSegments } from '../objects/LineSegments.js';
- import { VertexColors } from '../constants.js';
- import { LineBasicMaterial } from '../materials/LineBasicMaterial.js';
- import { Float32BufferAttribute } from '../core/BufferAttribute.js';
- import { BufferGeometry } from '../core/BufferGeometry.js';
- function AxisHelper( size ) {
- size = size || 1;
- var vertices = [
- 0, 0, 0, size, 0, 0,
- 0, 0, 0, 0, size, 0,
- 0, 0, 0, 0, 0, size
- ];
- var colors = [
- 1, 0, 0, 1, 0.6, 0,
- 0, 1, 0, 0.6, 1, 0,
- 0, 0, 1, 0, 0.6, 1
- ];
- var geometry = new BufferGeometry();
- geometry.addAttribute( 'position', new Float32BufferAttribute( vertices, 3 ) );
- geometry.addAttribute( 'color', new Float32BufferAttribute( colors, 3 ) );
- var material = new LineBasicMaterial( { vertexColors: VertexColors } );
- LineSegments.call( this, geometry, material );
- }
- AxisHelper.prototype = Object.create( LineSegments.prototype );
- AxisHelper.prototype.constructor = AxisHelper;
- export { AxisHelper };
|