Newer
Older
HuangJiPC / public / static / three / examples / jsm / nodes / accessors / PositionNode.d.ts
@zhangdeliang zhangdeliang on 21 Jun 408 bytes update
import { NodeBuilder } from '../core/NodeBuilder';
import { TempNode } from '../core/TempNode';

export class PositionNode extends TempNode {

	constructor( scope?: string );

	scope: string;
	nodeType: string;

	generate( builder: NodeBuilder, output: string ): string;
	copy( source: PositionNode ): this;

	static LOCAL: string;
	static WORLD: string;
	static VIEW: string;
	static PROJECTION: string;

}