* @brief Wrapper function to simulate a C++ constructor * for a bounding box of type pgl_box3f. * * @param lower * @param upper * @return pgl_box3f */
| 218 | * @return pgl_box3f |
| 219 | */ |
| 220 | OPENPGL_INLINE pgl_box3f Box3(pgl_point3f lower, pgl_point3f upper) |
| 221 | { |
| 222 | pgl_box3f box3{lower, upper}; |
| 223 | return box3; |
| 224 | } |
| 225 | |
| 226 | /** |
| 227 | * @brief Wrapper function to simulate a C++ constructor |
nothing calls this directly
no outgoing calls
no test coverage detected