]> Dogcows Code - chaz/yoink/blobdiff - src/Moof/Cullable.hh
scene drawing correctly implemented; new classes
[chaz/yoink] / src / Moof / Cullable.hh
index d543d0f07ecc040f6b744a00fcbb50ee5e16a024..34a09b6a7ec3889d329a8053e5cec12868146525 100644 (file)
@@ -36,14 +36,16 @@ namespace Mf {
 
 
 /**
 
 
 /**
- * Interface for anything that can be culled.  This can include more than just
- * frustrum culling.
+ * Interface for anything that can be culled.
  */
 
 class Cullable
 {
 public:
  */
 
 class Cullable
 {
 public:
-       virtual bool isVisible(const Camera& cam) = 0;
+       virtual bool isVisible(const Camera& cam) const
+       {
+               return true;
+       }
 };
 
 
 };
 
 
This page took 0.018491 seconds and 4 git commands to generate.