MCPcopy Create free account
hub / github.com/GaijinEntertainment/daScript / v_bbox3_add_box

Function v_bbox3_add_box

include/vecmath/dag_vecMath_common.h:828–832  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

826 b.bmax = v_max(b.bmax, p);
827}
828VECTORCALL VECMATH_FINLINE void v_bbox3_add_box(bbox3f &b, bbox3f b2)
829{
830 b.bmin = v_min(b.bmin, b2.bmin);
831 b.bmax = v_max(b.bmax, b2.bmax);
832}
833
834VECTORCALL VECMATH_FINLINE void v_bbox3_add_transformed_box(bbox3f &b, mat44f_cref m, bbox3f b2)
835{

Callers 1

Calls 2

v_minFunction · 0.70
v_maxFunction · 0.70

Tested by

no test coverage detected