Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/KhronosGroup/Vulkan-Samples
/ update
Method
update
framework/scene_graph/components/aabb.cpp:42–46 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
40
}
41
42
void AABB::update(const glm::vec3 &point)
43
{
44
min = glm::min(min, point);
45
max = glm::max(max, point);
46
}
47
48
void AABB::update(const std::vector<glm::vec3> &vertex_data, const std::vector<uint16_t> &index_data)
49
{
Callers
1
update_bounds
Method · 0.45
Calls
1
size
Method · 0.80
Tested by
no test coverage detected