* @brief Wrapper function to simulate a C++ constructor * for a 2d position of type pgl_point2f. * * @param x * @param y * @return pgl_point2f */
| 204 | * @return pgl_point2f |
| 205 | */ |
| 206 | OPENPGL_INLINE pgl_vec2f Point2(float x, float y) |
| 207 | { |
| 208 | pgl_point2f point2{x, y}; |
| 209 | return point2; |
| 210 | } |
| 211 | |
| 212 | /** |
| 213 | * @brief Wrapper function to simulate a C++ constructor |
nothing calls this directly
no outgoing calls
no test coverage detected