@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
24 lines (23 loc) • 969 B
TypeScript
/**
* returns the number of neighbours of a specific primitive
*
* @remarks
*
*
*/
import { TypedJsNode } from './_Base';
import { NodeParamsConfig } from '../utils/params/ParamsConfig';
import { JsLinesCollectionController } from './code/utils/JsLinesCollectionController';
declare class PrimitiveNeighboursCountJsParamsConfig extends NodeParamsConfig {
/** @param entity index */
index: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.INTEGER>;
/** @param require a shared edge */
sharedEdgeOnly: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.BOOLEAN>;
}
export declare class PrimitiveNeighboursCountJsNode extends TypedJsNode<PrimitiveNeighboursCountJsParamsConfig> {
paramsConfig: PrimitiveNeighboursCountJsParamsConfig;
static type(): string;
initializeNode(): void;
setLines(linesController: JsLinesCollectionController): void;
}
export {};