Back to class index
| AABB::EncloseSyntaxvoid AABB::Enclose(const float4 &point); [5 lines of code]void AABB::Enclose(const float4 &aabbMinPoint, const float4 &aabbMaxPoint); [5 lines of code] void AABB::Enclose(const LineSegment &lineSegment); [4 lines of code] void AABB::Enclose(const AABB &aabb); [1 lines of code] void AABB::Enclose(const OBB &obb); [8 lines of code] void AABB::Enclose(const Sphere &sphere); [5 lines of code] void AABB::Enclose(const Triangle &triangle); [4 lines of code] void AABB::Enclose(const Capsule &capsule); [6 lines of code] void AABB::Enclose(const Frustum &frustum); [4 lines of code] void AABB::Enclose(const Polygon &polygon); [4 lines of code] void AABB::Enclose(const Polyhedron &polyhedron); [4 lines of code] void AABB::Enclose(const float4 *pointArray, int numPoints); [8 lines of code] Expands this AABB to enclose the given object. This function computes an AABB that encloses both this AABB and the specified object, and stores the resulting AABB into this. Note The generated AABB is not necessarily the optimal enclosing AABB for this AABB and the given object. |