Simplify
open class Simplify
                - 
                  
                  
Returns an array of simplified points
Declaration
Swift
open class func simplify<T>(_ points: [T], tolerance: Float?, highQuality: Bool = false) -> [T] where T : SimplifyValueParameters
pointsAn array of points
toleranceAffects the amount of simplification (in the same metric as the point coordinates)
highQualityExcludes distance-based preprocessing step which leads to highest quality simplification but runs ~10-20 times slower
Return Value
Returns an array of simplified points
 
      Simplify Class Reference