UNPKG

@xtor/cga.js

Version:

Xtor Compute Geometry Algorithm Libary 计算几何算法库

9 lines 203 B
export class HalfEdge { constructor(vertex,face) { this.vertex = vertex; this.face =face; this.next = null; this.prev = null; this.pair = null; } }