@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
24 lines (23 loc) • 872 B
TypeScript
/**
* Measure primitives area.
*
*
*
*/
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 MeasureSopParamConfig extends NodeParamsConfig {
/** @param group to assign the material to */
group: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.STRING>;
attribName: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.STRING>;
}
export declare class MeasureSopNode extends TypedSopNode<MeasureSopParamConfig> {
paramsConfig: MeasureSopParamConfig;
static type(): SopType;
initializeNode(): void;
private _operation;
cook(inputCoreGroups: CoreGroup[]): void;
}
export {};