UNPKG

@smoud/tiny

Version:

Fast and tiny JavaScript library for HTML5 game and playable ads creation.

11 lines (9 loc) 306 B
export function flipGeometryNormalsIndexed(geometry) { var index = geometry.index.array; for (var i = 0, il = index.length / 3; i < il; i++) { var x = index[i * 3] index[i * 3] = index[i * 3 + 2] index[i * 3 + 2] = x } geometry.index.needsUpdate = true }