UNPKG

mesh-simplifier

Version:

Collection of mesh simplification methods written in Typescript

13 lines (9 loc) 240 B
/* * Copyright (c) 2020 NAVER Corp. * egjs projects are licensed under the MIT license */ import Geometry from "~/Geometries/Geometry"; interface MeshSimplifier { simplify(geometry: Geometry): this; } export default MeshSimplifier;