UNPKG

@polygonjs/polygonjs

Version:

node-based WebGL 3D engine https://polygonjs.com

13 lines (12 loc) 249 B
"use strict"; export class Face3 { constructor(a, b, c, normal, color, materialIndex) { this.a = a; this.b = b; this.c = c; this.normal = normal; this.color = color; this.materialIndex = materialIndex; } // clone(){} }