@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
16 lines (15 loc) • 680 B
TypeScript
import { BaseSopOperation } from './_Base';
import { CoreGroup } from '../../../core/geometry/Group';
import { InputCloneMode } from '../../poly/InputCloneMode';
import { DefaultOperationParams } from '../../../core/operations/_Base';
import { Vector3 } from 'three';
interface AxesHelperSopParams extends DefaultOperationParams {
center: Vector3;
}
export declare class AxesHelperSopOperation extends BaseSopOperation {
static readonly DEFAULT_PARAMS: AxesHelperSopParams;
static readonly INPUT_CLONED_STATE = InputCloneMode.NEVER;
static type(): Readonly<'axesHelper'>;
cook(input_contents: CoreGroup[], params: AxesHelperSopParams): CoreGroup;
}
export {};