Back to class index
| Frustum::IntersectsSyntaxbool Frustum::Intersects(const Ray &ray) const; [5 lines of code]bool Frustum::Intersects(const Line &line) const; [5 lines of code] bool Frustum::Intersects(const LineSegment &lineSegment) const; [4 lines of code] bool Frustum::Intersects(const AABB &aabb) const; [4 lines of code] bool Frustum::Intersects(const OBB &obb) const; [4 lines of code] bool Frustum::Intersects(const Plane &plane) const; [4 lines of code] bool Frustum::Intersects(const Triangle &triangle) const; [4 lines of code] bool Frustum::Intersects(const Polygon &polygon) const; [4 lines of code] bool Frustum::Intersects(const Sphere &sphere) const; [4 lines of code] bool Frustum::Intersects(const Capsule &capsule) const; [4 lines of code] bool Frustum::Intersects(const Frustum &frustum) const; [4 lines of code] bool Frustum::Intersects(const Polyhedron &polyhedron) const; [4 lines of code] Tests whether this Frustum and the given object intersect. Both objects are treated as "solid", meaning that if one of the objects is fully contained inside another, this function still returns true. (e.g. in case a line segment is contained inside this Frustum, or this Frustum is contained inside a Sphere, etc.) The first parameter of this function specifies the other object to test against. See AlsoWork in progress:Todo: in bool Frustum::Intersects(const Ray &ray) const: Add Intersects(Circle/Disc). Todo: in bool Frustum::Intersects(const Ray &ray) const: This is a naive test. Implement a faster version. Todo: in bool Frustum::Intersects(const Line &line) const: This is a naive test. Implement a faster version. |