]> Dogcows Code - chaz/yoink/blobdiff - src/Moof/Sphere.cc
miscellaneous cleanup
[chaz/yoink] / src / Moof / Sphere.cc
index 352d58d503b419ec5cb7d77b5d0e9e30f0047f98..d8d089dec0adb0b28235b4ab0449132def0183d0 100644 (file)
@@ -26,9 +26,9 @@
 
 *******************************************************************************/
 
-#include <Moof/Camera.hh>
-#include <Moof/OpenGL.hh>
-#include <Moof/Sphere.hh>
+#include "Camera.hh"
+#include "OpenGL.hh"
+#include "Sphere.hh"
 
 
 namespace Mf {
@@ -36,16 +36,17 @@ namespace Mf {
 
 void Sphere::encloseVertices(const Vector3 vertices[], unsigned count)
 {
+       // TODO
 }
 
 void Sphere::draw(Scalar alpha) const
 {
-
+       // TODO
 }
 
 bool Sphere::isVisible(const Camera& cam) const
 {
-       return cam.getFrustum().containsSphere(*this);
+       return cam.getFrustum().contains(*this);
 }
 
 
This page took 0.020821 seconds and 4 git commands to generate.