'use strict'; /** * */ function MeshFace(id, x, y, side) { this.id = id; this.x = x; this.y = y; this.side = side; this.fill = '#fff'; this.colors = []; };