three
Version:
JavaScript 3D library
18 lines (11 loc) • 484 B
TypeScript
import { ExpressionNode } from '../core/ExpressionNode';
import { Matrix3Node } from '../inputs/Matrix3Node';
import { UVNode } from '../accessors/UVNode';
export class UVTransformNode extends ExpressionNode {
constructor( uv?: UVNode, position?: Matrix3Node );
uv: UVNode;
position: Matrix3Node;
nodeType: string;
setUvTransform( tx: number, ty: number, sx: number, sy: number, rotation: number, cx?: number, cy?: number ): void;
copy( source: UVTransformNode ): this;
}