From 1765885bec0fb94668995ad5530c2053dcee57a4 Mon Sep 17 00:00:00 2001 From: Foxar Date: Mon, 21 Dec 2020 18:57:01 +0100 Subject: [PATCH] Removed: Commented-out ('disabled') method declarations. --- src/engine/include/models/mesh_frame.hpp | 2 -- src/engine/include/models/mesh_material.hpp | 2 -- 2 files changed, 4 deletions(-) diff --git a/src/engine/include/models/mesh_frame.hpp b/src/engine/include/models/mesh_frame.hpp index e3e2466..8ffe8e0 100644 --- a/src/engine/include/models/mesh_frame.hpp +++ b/src/engine/include/models/mesh_frame.hpp @@ -80,14 +80,12 @@ public: * Returns bounding box (AABB). * Total length: 8 */ - //Vector3 *getBoundingBox() { return boundingBox; }; Vector3 *getBoundingBox() { return boundingBoxObj->getVertices(); }; /** * Returns bounding box (AABB) vertex. * Total length: 8 */ - //Vector3 &getBoundingBoxVertex(const u8 &i) { return boundingBox[i]; }; Vector3 &getBoundingBoxVertex(const u8 &i) { return boundingBoxObj->getVertex(i); }; /** diff --git a/src/engine/include/models/mesh_material.hpp b/src/engine/include/models/mesh_material.hpp index 976a32b..dffcf8d 100644 --- a/src/engine/include/models/mesh_material.hpp +++ b/src/engine/include/models/mesh_material.hpp @@ -66,14 +66,12 @@ public: * Returns bounding box (AABB). * Total length: 8 */ - //Vector3 *getBoundingBox() { return boundingBox; }; Vector3 *getBoundingBox() { return boundingBoxObj->getVertices(); }; /** * Returns bounding box (AABB) vertex. * Total length: 8 */ - //Vector3 &getBoundingBoxVertex(const u8 &i) { return boundingBox[i]; }; Vector3 &getBoundingBoxVertex(const u8 &i) { return boundingBoxObj->getVertex(i); }; /**