| 70 | } |
| 71 | |
| 72 | LinearSegment *LinearSegment::clone() const { |
| 73 | return new LinearSegment(p[0], p[1], color); |
| 74 | } |
| 75 | |
| 76 | QuadraticSegment *QuadraticSegment::clone() const { |
| 77 | return new QuadraticSegment(p[0], p[1], p[2], color); |
no outgoing calls
no test coverage detected