UNPKG

@xtor/cga.js

Version:

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

13 lines (11 loc) 195 B
/** * 暂不使用 */ export class Vec extends Array { constructor(n: number) { super(); while (n-- > 0) { this[this.length] = 0; } } }