| 165 | } |
| 166 | |
| 167 | inline void pglVec3fAdd(pgl_vec3f &veca, const pgl_vec3f &vecb) |
| 168 | { |
| 169 | veca.x += vecb.x; |
| 170 | veca.y += vecb.y; |
| 171 | veca.z += vecb.z; |
| 172 | } |
| 173 | |
| 174 | inline void pglVec2f(pgl_vec2f &vec, const float x, const float y) |
| 175 | { |
no outgoing calls
no test coverage detected