reformat to break overly long lines

This commit is contained in:
Dennis Luxen 2014-10-27 17:34:50 -04:00
parent 4dbc1e0e96
commit 1c56671f01

View File

@ -38,7 +38,8 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include <algorithm> #include <algorithm>
namespace { namespace
{
struct CoordinatePairCalculator struct CoordinatePairCalculator
{ {
CoordinatePairCalculator() = delete; CoordinatePairCalculator() = delete;
@ -83,25 +84,26 @@ struct CoordinatePairCalculator
} }
DouglasPeucker::DouglasPeucker() DouglasPeucker::DouglasPeucker()
: douglas_peucker_thresholds({512440, // z0 : douglas_peucker_thresholds({
256720, // z1 512440, // z0
122560, // z2 256720, // z1
56780, // z3 122560, // z2
28800, // z4 56780, // z3
14400, // z5 28800, // z4
7200, // z6 14400, // z5
3200, // z7 7200, // z6
2400, // z8 3200, // z7
1000, // z9 2400, // z8
600, // z10 1000, // z9
120, // z11 600, // z10
60, // z12 120, // z11
45, // z13 60, // z12
36, // z14 45, // z13
20, // z15 36, // z14
8, // z16 20, // z15
6, // z17 8, // z16
4 // z18 6, // z17
4 // z18
}) })
{ {
} }