MCPcopy 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
42void AABB::update(const glm::vec3 &point)
43{
44 min = glm::min(min, point);
45 max = glm::max(max, point);
46}
47
48void AABB::update(const std::vector<glm::vec3> &vertex_data, const std::vector<uint16_t> &index_data)
49{

Callers 1

update_boundsMethod · 0.45

Calls 1

sizeMethod · 0.80

Tested by

no test coverage detected