]> Dogcows Code - chaz/yoink/blobdiff - src/moof/cullable.hh
the massive refactoring effort
[chaz/yoink] / src / moof / cullable.hh
similarity index 70%
rename from src/Moof/Cullable.hh
rename to src/moof/cullable.hh
index a5ffcc1446e77cfac97491ad409d617d42777c55..4e4391e3187d64c05017e1bf1a3868add0276d41 100644 (file)
 #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_
 
This page took 0.024054 seconds and 4 git commands to generate.