mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-04 10:19:24 +02:00
17 lines
460 B
TypeScript
17 lines
460 B
TypeScript
import { Matrix3 } from '../../../../src/Three';
|
|
|
|
import { InputNode } from '../core/InputNode';
|
|
import { NodeBuilder } from '../core/NodeBuilder';
|
|
|
|
export class Matrix3Node extends InputNode {
|
|
|
|
constructor( matrix?: Matrix3 );
|
|
|
|
value: Matrix3;
|
|
nodeType: string;
|
|
elements: number[];
|
|
|
|
generateReadonly( builder: NodeBuilder, output: string, uuid?: string, type?: string, ns?: string, needsUpdate?: boolean ): string;
|
|
copy( source: Matrix3Node ): this;
|
|
|
|
}
|