@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
23 lines (22 loc) • 763 B
TypeScript
/**
* Creates a axes helper.
*
*
*
*/
import { TypedSopNode } from './_Base';
import { CoreGroup } from '../../../core/geometry/Group';
import { NodeParamsConfig } from '../utils/params/ParamsConfig';
import { SopType } from '../../poly/registers/nodes/types/Sop';
declare class AxesHelperSopParamsConfig extends NodeParamsConfig {
/** @param center of the geometry */
center: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.VECTOR3>;
}
export declare class AxesHelperSopNode extends TypedSopNode<AxesHelperSopParamsConfig> {
paramsConfig: AxesHelperSopParamsConfig;
static type(): SopType;
initializeNode(): void;
private _operation;
cook(input_contents: CoreGroup[]): void;
}
export {};