MCPcopy Create free account
hub / github.com/RozDavid/UnScene3D / max

Function max

utils/cpp_utils/include/vec3.h:422–427  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

420
421 template<class T>
422 inline vec3<T> max(const vec3<T> &p, T v) {
423 return vec3<T>(
424 std::max(p.x, v),
425 std::max(p.y, v),
426 std::max(p.z, v));
427 }
428
429 template<class T>
430 inline vec3<T> max(const vec3<T> &p, const vec3<T> &v) {

Callers 15

splitMethod · 0.50
nms_2dFunction · 0.50
box3d_iouFunction · 0.50
get_iouFunction · 0.50
bbox_corner_dist_measureFunction · 0.50
forwardMethod · 0.50
forwardMethod · 0.50
forwardMethod · 0.50
opt_n_threadsFunction · 0.50
opt_block_configFunction · 0.50
build_graphFunction · 0.50
evaluate_matchesMethod · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected