PointExtracter class

Extracts all the 0-dimensional ({@link Point}) components from a {@link Geometry}.

@version 1.7 @see GeometryExtracter

Implemented types

Constructors

PointExtracter(List pts)
Constructs a PointExtracterFilter with a list in which to store Points found.

Properties

hashCode int
The hash code for this object.
no setterinherited
pts List
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

filter(Geometry geom) → void
Performs an operation with or on geom.
override
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

getPoints(Geometry geom) List
Extracts the {@link Point} elements from a single {@link Geometry} and returns them in a {@link List}.
getPointsWithList(Geometry geom, List<Point> list) List<Point>
Extracts the {@link Point} elements from a single {@link Geometry} and adds them to the provided {@link List}.