add comment

This commit is contained in:
yangxiao 2015-05-28 12:40:16 +08:00
parent a5976a43f7
commit 2e27bfd6c7
1 changed files with 6 additions and 0 deletions

View File

@ -343,6 +343,12 @@ public:
*/
Vec3 getIntersectionPoint(const Ray & ray) const;
/**
* Ray-Terrain intersection.
* @param ray to hit the terrain
* @param intersectionPoint hit point if hitted
* @return true if hit, false otherwise
*/
bool getIntersectionPoint(const Ray & ray, Vec3 & intersectionPoint) const;
/**