Added: Multiple doxygen @returns comments.

This commit is contained in:
Foxar
2020-12-21 20:35:09 +01:00
parent ae3dd737e5
commit 3af3576203
3 changed files with 15 additions and 15 deletions
+3 -3
View File
@@ -77,19 +77,19 @@ public:
MeshMaterial *getMaterials() const { return materials; };
/**
* Returns bounding box (AABB).
* @returns bounding box (AABB).
* Total length: 8
*/
Vector3 *getBoundingBoxVertices() { return boundingBoxObj->getVertices(); };
/**
* Returns bounding box (AABB) vertex.
* @returns bounding box (AABB) vertex.
* Total length: 8
*/
const Vector3 &getBoundingBoxVertex(const u8 &i) { return boundingBoxObj->getVertex(i); };
/**
* Returns bounding box (AABB) object pointer.
* @returns bounding box (AABB) object pointer.
*/
BoundingBox *getBoundingBox() { return boundingBoxObj; };