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

Function v_bbox3_sum

include/vecmath/dag_vecMath_common.h:847–853  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

845}
846
847VECTORCALL VECMATH_FINLINE bbox3f v_bbox3_sum(bbox3f b1, bbox3f b2)
848{
849 bbox3f b;
850 b.bmin = v_min(b1.bmin, b2.bmin);
851 b.bmax = v_max(b1.bmax, b2.bmax);
852 return b;
853}
854
855VECTORCALL VECMATH_FINLINE bbox3f v_bbox3_sel(bbox3f b1, bbox3f b2, vec4f c)
856{

Callers

nothing calls this directly

Calls 2

v_minFunction · 0.70
v_maxFunction · 0.70

Tested by

no test coverage detected