| 61 | struct Point3f : public pgl_point3f |
| 62 | { |
| 63 | Point3f(const pgl_point3f &p) |
| 64 | { |
| 65 | this->x = p.x; |
| 66 | this->y = p.y; |
| 67 | this->z = p.z; |
| 68 | } |
| 69 | Point3f(float x, float y, float z) |
| 70 | { |
| 71 | this->x = x; |
nothing calls this directly
no outgoing calls
no test coverage detected