isGeometryChanged method

bool isGeometryChanged()
override

Reports whether the execution of this filter has modified the coordinates of the geometry. If so, {@link Geometry#geometryChanged} will be executed after this filter has finished being executed.

Most filters can simply return a constant value reflecting whether they are able to change the coordinates.

@return true if this filter has changed the coordinates of the geometry

Implementation

bool isGeometryChanged() {
  return false;
}