for a 3d vector of type pgl_vec3f. * * @param x * @param y * @param z * @return pgl_vec3f */
| 161 | * @return pgl_vec3f |
| 162 | */ |
| 163 | OPENPGL_INLINE pgl_vec3f Vector3(float x, float y, float z) |
| 164 | { |
| 165 | pgl_vec3f vec3{x, y, z}; |
| 166 | return vec3; |
| 167 | } |
| 168 | |
| 169 | /** |
| 170 | * @brief Wrapper function to simulate a C++ constructor |
no outgoing calls
no test coverage detected