MCPcopy Create free account
hub / github.com/RobLoach/raylib-cpp / set

Method set

include/BoundingBox.hpp:70–73  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

68 RayCollision GetCollision(const ::Ray& ray) const { return GetRayCollisionBox(ray, *this); }
69protected:
70 void set(const ::BoundingBox& box) {
71 min = box.min;
72 max = box.max;
73 }
74 void set(const ::Vector3& _min, const ::Vector3& _max) {
75 min = _min;
76 max = _max;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected