Compute the normal of triangle i. @return The "target" vector object
Vec3 getNormal(int i, Vec3 target) { final i3 = i * 3; return target.set(normals![i3], normals![i3 + 1], normals![i3 + 2]); }