| 107 | struct Point2f : public pgl_point2f |
| 108 | { |
| 109 | Point2f(const pgl_point2f &p) |
| 110 | { |
| 111 | this->x = p.x; |
| 112 | this->y = p.y; |
| 113 | } |
| 114 | Point2f(float x, float y) |
| 115 | { |
| 116 | this->x = x; |
nothing calls this directly
no outgoing calls
no test coverage detected