Changed: Renamed getBoundingBox() to getBoundingBoxVertices() as the function returns the array of vertices from the BoundingBox object.
This commit is contained in:
@@ -80,7 +80,7 @@ public:
|
||||
* Returns bounding box (AABB).
|
||||
* Total length: 8
|
||||
*/
|
||||
Vector3 *getBoundingBox() { return boundingBoxObj->getVertices(); };
|
||||
Vector3 *getBoundingBoxVertices() { return boundingBoxObj->getVertices(); };
|
||||
|
||||
/**
|
||||
* Returns bounding box (AABB) vertex.
|
||||
@@ -91,7 +91,7 @@ public:
|
||||
/**
|
||||
* Returns bounding box (AABB) object pointer.
|
||||
*/
|
||||
BoundingBox *getBoundingBoxP() { return boundingBoxObj; };
|
||||
BoundingBox *getBoundingBox() { return boundingBoxObj; };
|
||||
|
||||
// ----
|
||||
// Setters
|
||||
|
||||
Reference in New Issue
Block a user