| 84 | struct Point3i : public pgl_point3i |
| 85 | { |
| 86 | Point3i(const pgl_point3i &p) |
| 87 | { |
| 88 | this->x = p.x; |
| 89 | this->y = p.y; |
| 90 | this->z = p.z; |
| 91 | } |
| 92 | Point3i(int32_t x, int32_t y, int32_t z) |
| 93 | { |
| 94 | this->x = x; |
nothing calls this directly
no outgoing calls
no test coverage detected