Skip to content

inboxg9/douglas-peucker-dart

This branch is 1 commit behind darwin-morocho/douglas-peucker-dart:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

bf58377 · Aug 20, 2020

History

6 Commits
Aug 20, 2020
Jul 8, 2019
Jul 8, 2019
Jul 8, 2019
Jul 8, 2019
Jul 8, 2019
Jul 8, 2019

Repository files navigation

Polyline simplification library for dart projects like flutter.

Extracted from PHP: AKeN / simplify-php (by Rotari Gheorghe)

HOW TO USE

import 'package:douglas_peucker/douglas_peucker.dart';

.
.
.


List<Point> points = List<Point>();

points.add(Point(0,-1));
points.add(Point(0,0));
points.add(Point(1,3));
points.add(Point(4,6));
points.add(Point(10,9));



List <Point> newPolyline = DouglasPeucker.simplify(points,tolerance: 0.0004,highestQuality:false);

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dart 100.0%