mesh-simplifier
Version:
Collection of mesh simplification methods written in Typescript
20 lines (15 loc) • 305 B
text/typescript
/*
* Copyright (c) 2020 NAVER Corp.
* egjs projects are licensed under the MIT license
*/
import Vector3 from "./Vector3";
class Face3 {
public index: number;
public normal: Vector3;
constructor(
public a: number,
public b: number,
public c: number
) {}
}
export default Face3;