Vertex.js 175 B

12345678910
  1. /**
  2. * @author mrdoob / http://mrdoob.com/
  3. */
  4. THREE.Vertex = function ( v ) {
  5. console.warn( 'THREE.Vertex has been DEPRECATED. Use THREE.Vector3 instead.')
  6. return v;
  7. };