MCPcopy Create free account
hub / github.com/PacktPublishing/3D-Graphics-Rendering-Cookbook / BoundingBox

Method BoundingBox

shared/UtilsMath.h:23–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21 vec3 min_;
22 vec3 max_;
23 BoundingBox() = default;
24 BoundingBox(const vec3& min, const vec3& max) : min_(glm::min(min, max)), max_(glm::max(min, max)) {}
25 BoundingBox(const vec3* points, size_t numPoints)
26 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected