gingerBill/gb

gb_math.h gb_Vec3 has a 2-element float array instead of 3

Closed this issue · 1 comments

// ...
float e[2];
} gbVec3;
// ...
should be:
// ...
float e[3];
} gbVec3;
// ...

This has been corrected. Thank you.