X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=blobdiff_plain;f=src%2Fmoof%2Fentity.hh;fp=src%2Fmoof%2Fentity.hh;h=f95a94cc1fba513549ac4e56fd6ec0e8fa17dbb0;hp=b503551b38f2422fa4b9f6597c79314f1d91a0c0;hb=6f1b787a10d8ab1a3117a4b8c004dd2d90599608;hpb=c143f7e806766a73cd69dc6e084e977641019ce6 diff --git a/src/moof/entity.hh b/src/moof/entity.hh index b503551..f95a94c 100644 --- a/src/moof/entity.hh +++ b/src/moof/entity.hh @@ -79,7 +79,7 @@ public: * Get the axis-aligned bounding box surrounding the entity. * \return The AABB. */ - const moof::aabb<3>& aabb() const + const moof::aabb3& aabb() const { return aabb_; } @@ -87,7 +87,7 @@ public: /** Get the bounding sphere surrounding the entity. * \return The sphere. */ - const moof::sphere<3>& sphere() const + const moof::sphere3& sphere() const { return sphere_; } @@ -95,8 +95,8 @@ public: protected: - moof::aabb<3> aabb_; - moof::sphere<3> sphere_; + moof::aabb3 aabb_; + moof::sphere3 sphere_; };