Vertex.js 143 B

123456789
  1. /**
  2. * @author mr.doob / http://mrdoob.com/
  3. */
  4. THREE.Vertex = function ( position ) {
  5. this.position = position || new THREE.Vector3();
  6. };