polygonjs-engine
Version:
node-based webgl 3D engine https://polygonjs.com
15 lines (14 loc) • 623 B
TypeScript
import { BaseSopOperation } from './_Base';
import { DefaultOperationParams } from '../_Base';
import { CoreGroup } from '../../../core/geometry/Group';
import { InputCloneMode } from '../../../engine/poly/InputCloneMode';
interface CenterSopParams extends DefaultOperationParams {
}
export declare class CenterSopOperation extends BaseSopOperation {
static readonly DEFAULT_PARAMS: CenterSopParams;
static readonly INPUT_CLONED_STATE = InputCloneMode.FROM_NODE;
static type(): Readonly<'center'>;
private _geo_center;
cook(input_contents: CoreGroup[], params: CenterSopParams): CoreGroup;
}
export {};