From e4a0c1ba4a16c0e0f7c1013afd924ecb41b41f05 Mon Sep 17 00:00:00 2001 From: jaseg Date: Mon, 20 Jun 2022 18:30:34 +0200 Subject: Fix outline mode clip & flash handling --- svg-flatten/src/out_scaler.cpp | 6 ------ 1 file changed, 6 deletions(-) (limited to 'svg-flatten/src/out_scaler.cpp') diff --git a/svg-flatten/src/out_scaler.cpp b/svg-flatten/src/out_scaler.cpp index fb54145..c6e624d 100644 --- a/svg-flatten/src/out_scaler.cpp +++ b/svg-flatten/src/out_scaler.cpp @@ -64,12 +64,6 @@ PolygonScaler &PolygonScaler::operator<<(const Polygon &poly) { return *this; } -PolygonScaler &PolygonScaler::operator<<(const DrillToken &tok) { - d2p new_center { tok.m_center[0] * m_scale, tok.m_center[1] * m_scale }; - m_sink << DrillToken(new_center); - return *this; -} - PolygonScaler &PolygonScaler::operator<<(const FlashToken &tok) { d2p new_offset = { tok.m_offset[0] * m_scale, tok.m_offset[1] * m_scale}; m_sink << FlashToken(new_offset); -- cgit