andy-thomason / octet

A single module, header only C++ framework for learning OpenGL
12 stars 68 forks source link

bug in mesh::calc_aabb #2

Open colormotor opened 8 years ago

colormotor commented 8 years ago

Hi Andy, Just spotted a bug in mesh::calc_aabb, vmax = max(pos, vmin); should be: vmax = max(pos, vmax); Cheers! Daniel

andy-thomason commented 8 years ago

Thanks. Can you post a pull request...Sent from my Huawei Mobile-------- Original Message --------Subject: [octet] bug in mesh::calc_aabb (#2)From: colormotor To: andy-thomason/octet CC: Hi Andy, Just spotted a bug in mesh::calc_aabb, vmax = max(pos, vmin); should be: vmax = max(pos, vmax); Cheers! Daniel

—Reply to this email directly or view it on GitHub.