Destroy the data used to render AABBs
| 43 | |
| 44 | // Destroy the data used to render AABBs |
| 45 | void AABB::destroy() { |
| 46 | |
| 47 | // Destroy the VBOs and VAO |
| 48 | mVBOVertices.destroy(); |
| 49 | mVBONormals.destroy(); |
| 50 | mVAO.destroy(); |
| 51 | } |
| 52 | |
| 53 | // Render the AABB |
| 54 | void AABB::render(const openglframework::Vector3& position, const openglframework::Vector3& dimension, |
no outgoing calls
no test coverage detected