123456789101112131415161718192021222324252627282930313233343536373839404142 |
- /**
- * @author mr.doob / http://mrdoob.com/
- */
- THREE.UV = function ( u, v ) {
- this.set(
- u || 0,
- v || 0
- );
- };
- THREE.UV.prototype = {
- set : function ( u, v ) {
- this.u = u;
- this.v = v;
- return this;
- },
- copy : function ( uv ) {
- this.set(
- uv.u,
- uv.v
- );
- return this;
- },
-
- constructor : THREE.UV
- };
|