webvr js meetup initial commit
This commit is contained in:
14
node_modules/three/examples/js/nodes/inputs/Matrix4Node.js
generated
vendored
Normal file
14
node_modules/three/examples/js/nodes/inputs/Matrix4Node.js
generated
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
/**
|
||||
* @author sunag / http://www.sunag.com.br/
|
||||
*/
|
||||
|
||||
THREE.Matrix4Node = function( matrix ) {
|
||||
|
||||
THREE.InputNode.call( this, 'm4' );
|
||||
|
||||
this.value = matrix || new THREE.Matrix4();
|
||||
|
||||
};
|
||||
|
||||
THREE.Matrix4Node.prototype = Object.create( THREE.InputNode.prototype );
|
||||
THREE.Matrix4Node.prototype.constructor = THREE.Matrix4Node;
|
||||
Reference in New Issue
Block a user