| 408 | } |
| 409 | |
| 410 | void write_polygon(const Polygon_2& polygon, const std::string& name) { |
| 411 | if (enabled_) { |
| 412 | write_polygon_to_obj_(obj, vi, true, polygon, name); |
| 413 | write_polygon_to_svg_(svg, polygon, name); |
| 414 | obj << std::flush; |
| 415 | } |
| 416 | } |
| 417 | |
| 418 | void write_segment(const Point_2& p, const Point_2& q, const std::string& name) { |
| 419 | if (enabled_) { |
no outgoing calls
no test coverage detected