Matrix4Node.d.ts 458 B

123456789101112131415
  1. import { Matrix4 } from '../../../../src/Three';
  2. import { InputNode } from '../core/InputNode';
  3. import { NodeBuilder } from '../core/NodeBuilder';
  4. export class Matrix4Node extends InputNode {
  5. constructor(matrix?: Matrix4);
  6. value: Matrix4;
  7. nodeType: string;
  8. elements: number[];
  9. generateReadonly(builder: NodeBuilder, output: string, uuid?: string, type?: string, ns?: string, needsUpdate?: boolean): string;
  10. copy(source: Matrix4Node): this;
  11. }