polygonjs-engine
Version:
node-based webgl 3D engine https://polygonjs.com
19 lines (18 loc) • 557 B
TypeScript
/**
* Creates a point at the center of each input objects
*
*
*/
import { TypedSopNode } from './_Base';
import { CoreGroup } from '../../../core/geometry/Group';
import { NodeParamsConfig } from '../utils/params/ParamsConfig';
declare class CenterSopParamsConfig extends NodeParamsConfig {
}
export declare class CenterSopNode extends TypedSopNode<CenterSopParamsConfig> {
params_config: CenterSopParamsConfig;
static type(): string;
initializeNode(): void;
private _operation;
cook(input_contents: CoreGroup[]): void;
}
export {};