UNPKG

mesh-simplifier

Version:

Collection of mesh simplification methods written in Typescript

17 lines (13 loc) 240 B
/* * Copyright (c) 2020 NAVER Corp. * egjs projects are licensed under the MIT license */ class Ref { public tid: number; public tvertex: number; constructor() { this.tid = 0; this.tvertex = 0; } } export default Ref;