]> Dogcows Code - chaz/yoink/blobdiff - src/Moof/Math.hh
initial working frustum culling implementation
[chaz/yoink] / src / Moof / Math.hh
index 4e1cda8c1a25f3a4f57cffe616a56564040f45f6..26c4b5180dc61395c97752bd133b606de9285b10 100644 (file)
@@ -85,7 +85,7 @@ const Scalar EPSILON = 0.000001;
  * Check the equality of scalars with a certain degree of error allowed.
  */
 
-inline bool checkEquality(Scalar a, Scalar b, Scalar epsilon = EPSILON)
+inline bool isEqual(Scalar a, Scalar b, Scalar epsilon = EPSILON)
 {
        return std::abs(a - b) < epsilon;
 }
This page took 0.016803 seconds and 4 git commands to generate.