Matrix4Node.js 269 B

12345678910111213141516
  1. import InputNode from '../core/InputNode.js';
  2. import { Matrix4 } from '../../../../../build/three.module.js';
  3. class Matrix4Node extends InputNode {
  4. constructor( value = new Matrix4() ) {
  5. super( 'mat4' );
  6. this.value = value;
  7. }
  8. }
  9. export default Matrix4Node;