gb_math.h gb_Vec3 has a 2-element float array instead of 3
Closed this issue · 1 comments
Nameguy commented
// ...
float e[2];
} gbVec3;
// ...
should be:
// ...
float e[3];
} gbVec3;
// ...
gingerBill commented
This has been corrected. Thank you.