| 16 | struct Vector3f : public pgl_vec3f |
| 17 | { |
| 18 | Vector3f(const pgl_vec3f &v) |
| 19 | { |
| 20 | this->x = v.x; |
| 21 | this->y = v.y; |
| 22 | this->z = v.z; |
| 23 | } |
| 24 | |
| 25 | Vector3f(float x, float y, float z) |
| 26 | { |
nothing calls this directly
no outgoing calls
no test coverage detected