]> Dogcows Code - chaz/yoink/blobdiff - src/Moof/Plane.hh
refactoring the scene class
[chaz/yoink] / src / Moof / Plane.hh
index 4739bb825406d5599d853ea0e39671d387e8041e..06e4abdce63f59398f961a531942d7b63ec667ea 100644 (file)
@@ -78,12 +78,12 @@ struct Plane
        /**
         * Determine the shortest distance between a point and the plane. */
 
-       inline Scalar getDistanceToPoint(const Vector3& point) const
+       Scalar getDistanceToPoint(const Vector3& point) const
        {
                return cml::dot(point, normal) + d;
        }
 
-       inline Halfspace intersects(const Vector3& point) const
+       Halfspace intersects(const Vector3& point) const
        {
                Scalar distance = getDistanceToPoint(point);
 
This page took 0.017889 seconds and 4 git commands to generate.