Vertex.js 176 字节
Newer Older
M
Mr.doob 已提交
1 2 3 4
/**
 * @author mr.doob / http://mrdoob.com/
 */

5
THREE.Vertex = function ( v ) {
M
Mr.doob 已提交
6 7

	console.warn( 'THREE.Vertex has been DEPRECATED. Use THREE.Vector3 instead.')
8
	return v;
M
Mr.doob 已提交
9 10

};