webvr js meetup initial commit

This commit is contained in:
Senad Uka
2017-03-11 15:22:17 +01:00
commit 3f640b55db
761 changed files with 264174 additions and 0 deletions

29
node_modules/three/examples/js/nodes/inputs/IntNode.js generated vendored Normal file
View File

@@ -0,0 +1,29 @@
/**
* @author sunag / http://www.sunag.com.br/
*/
THREE.IntNode = function( value ) {
THREE.InputNode.call( this, 'iv1' );
this.value = [ Math.floor( value || 0 ) ];
};
THREE.IntNode.prototype = Object.create( THREE.InputNode.prototype );
THREE.IntNode.prototype.constructor = THREE.IntNode;
Object.defineProperties( THREE.IntNode.prototype, {
number: {
get: function() {
return this.value[ 0 ];
},
set: function( val ) {
this.value[ 0 ] = Math.floor( val );
}
}
} );