X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=src%2Fmoof%2Fcullable.hh;fp=src%2FMoof%2FCullable.hh;h=4e4391e3187d64c05017e1bf1a3868add0276d41;hb=831f04d4bc19a390415ac0bbac4331c7a65509bc;hp=a5ffcc1446e77cfac97491ad409d617d42777c55;hpb=299af4f2047e767e5d79501c26444473bda64c64;p=chaz%2Fyoink diff --git a/src/Moof/Cullable.hh b/src/moof/cullable.hh similarity index 70% rename from src/Moof/Cullable.hh rename to src/moof/cullable.hh index a5ffcc1..4e4391e 100644 --- a/src/Moof/Cullable.hh +++ b/src/moof/cullable.hh @@ -12,22 +12,27 @@ #ifndef _MOOF_CULLABLE_HH_ #define _MOOF_CULLABLE_HH_ +/** + * \file cullable.hh + * Representation for an object that may or may not be visible. + */ + -namespace Mf { +namespace moof { -class Frustum; +class frustum; /** * Interface for anything that can be culled. */ -class Cullable +class cullable { public: - virtual ~Cullable() {} + virtual ~cullable() {} - virtual bool isVisible(const Frustum& frustum) const + virtual bool is_visible(const frustum& frustum) const { // unless determined otherwise, assume visible return true; @@ -35,7 +40,7 @@ public: }; -} // namespace Mf +} // namespace moof #endif // _MOOF_CULLABLE_HH_