Simpli class abstract

Line simplification algorithms, made simple! Sporting Ramer-Douglas-Peucker and Visvalingam

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

ramerDouglasPeucker(List<Point<num>> points, {double pixelTolerance = 50.0}) List<Point<num>>
Simplifies a list of points using the Ramer-Douglas-Peucker algorithm using the given pixelTolerance.
visvalingam(List<Point<num>> points, {double pixelTolerance = 50.0}) List<Point<num>>
Simplifies a list of points using the Visvalingam algorithm using the given pixelTolerance.