mirror of
https://github.com/wahyd4/three.js.git
synced 2026-08-17 17:05:57 +10:00
23 lines
445 B
JavaScript
23 lines
445 B
JavaScript
/**
|
|
* @author mr.doob / http://mrdoob.com/
|
|
*/
|
|
|
|
THREE.Vertex = function ( position /*, normal*/ ) {
|
|
|
|
this.position = position || new THREE.Vector3();
|
|
|
|
/*
|
|
this.positionWorld = new THREE.Vector3();
|
|
this.positionScreen = new THREE.Vector4();
|
|
|
|
this.normal = normal || new THREE.Vector3();
|
|
this.normalWorld = new THREE.Vector3();
|
|
this.normalScreen = new THREE.Vector3();
|
|
|
|
this.tangent = new THREE.Vector4();
|
|
|
|
this.__visible = true;
|
|
*/
|
|
|
|
};
|