simplify.py icon indicating copy to clipboard operation
simplify.py copied to clipboard

A port of simplify.js (https://github.com/mourner/simplify-js)

Results 2 simplify.py issues
Sort by recently updated
recently updated
newest added

If we ran follow script import simplify print simplify.simplify_points([{'y': 0, 'x': 15}, {'y': 0.6, 'x': 16}, {'y': 0, 'x': 17}], 0.5) we got: [{'y': 0, 'x': 15}, {'y': 0.6, 'x':...

Processing kml files I wanted to be able to use tuples of tuples so I don't have to build huge numbers of dicts to optimize long paths. I ran tests...