Merge pull request #219 from lvlonggame/v3

modify function description.
This commit is contained in:
XiaoYang 2015-01-20 15:18:46 +08:00
commit 15904fda0a
1 changed files with 2 additions and 2 deletions

View File

@ -59,12 +59,12 @@ public:
~Ray(); ~Ray();
/** /**
* Check whether this ray intersects the specified bounding box. * Check whether this ray intersects with the specified AABB.
*/ */
bool intersects(const AABB& aabb, float* distance = nullptr) const; bool intersects(const AABB& aabb, float* distance = nullptr) const;
/** /**
* Check whether this ray intersects the specified obb. * Check whether this ray intersects with the specified OBB.
*/ */
bool intersects(const OBB& obb, float* distance = nullptr) const; bool intersects(const OBB& obb, float* distance = nullptr) const;