| 816 | return v_length3_x(v_max(v_neg(b.bmin), b.bmax)); |
| 817 | } |
| 818 | VECTORCALL VECMATH_FINLINE vec3f v_bbox3_point(bbox3f b, int idx) |
| 819 | { |
| 820 | return v_sel(b.bmin, b.bmax, v_make_vec4f_mask(uint8_t(idx))); |
| 821 | } |
| 822 | |
| 823 | VECTORCALL VECMATH_FINLINE void v_bbox3_add_pt(bbox3f &b, vec3f p) |
| 824 | { |
nothing calls this directly
no test coverage detected