@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
15 lines (14 loc) • 396 B
TypeScript
import { NeighbourIndex } from './QuadGraphCommon';
export interface QuadHalfEdgeOptions {
quadId: number;
index0: number;
index1: number;
sideIndex: NeighbourIndex;
}
export declare class QuadHalfEdge {
readonly quadId: number;
readonly index0: number;
readonly index1: number;
readonly sideIndex: NeighbourIndex;
constructor(options: QuadHalfEdgeOptions);
}