MCPcopy Create free account
hub / github.com/OpenPathGuidingLibrary/openpgl / Box3

Function Box3

openpgl/include/openpgl/cpp/Common.h:220–224  ·  view source on GitHub ↗

* @brief Wrapper function to simulate a C++ constructor * for a bounding box of type pgl_box3f. * * @param lower * @param upper * @return pgl_box3f */

Source from the content-addressed store, hash-verified

218 * @return pgl_box3f
219 */
220OPENPGL_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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected