UNPKG

@polygonjs/polygonjs

Version:

node-based WebGL 3D engine https://polygonjs.com

26 lines (25 loc) 1.11 kB
/** * return the index of a neighbour of a primitive * * @remarks * * */ import { TypedJsNode } from './_Base'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; import { JsLinesCollectionController } from './code/utils/JsLinesCollectionController'; declare class PrimitiveNeighbourIndexJsParamsConfig extends NodeParamsConfig { /** @param entity index */ index: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.INTEGER>; /** @param neighbour index */ neighbourIndex: 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 PrimitiveNeighbourIndexJsNode extends TypedJsNode<PrimitiveNeighbourIndexJsParamsConfig> { paramsConfig: PrimitiveNeighbourIndexJsParamsConfig; static type(): string; initializeNode(): void; setLines(linesController: JsLinesCollectionController): void; } export {};