Documentation
¶
Overview ¶
Package filter Define matrix data filter function.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Filter ¶
type Filter interface { // FilterSteric Performs an operation with the provided . FilterSteric(matrix matrix.Steric) // Filter Performs an operation with the provided . Filter(matrix matrix.Matrix) // Matrixes ... Matrixes() []matrix.Matrix }
Filter An interface which use the values of the coordinates in a Geometry.
Coordinate filters can be used to implement centroid and envelope computation, and many other functions.
type UniqueArrayFilter ¶
type UniqueArrayFilter struct {
// contains filtered or unexported fields
}
UniqueArrayFilter A Filter that extracts a unique array.
func (*UniqueArrayFilter) Filter ¶
func (u *UniqueArrayFilter) Filter(matrix matrix.Matrix)
Filter Performs an operation with the provided .
func (*UniqueArrayFilter) FilterSteric ¶
func (u *UniqueArrayFilter) FilterSteric(matr matrix.Steric)
FilterSteric Performs an operation with the provided .
func (*UniqueArrayFilter) Matrixes ¶
func (u *UniqueArrayFilter) Matrixes() []matrix.Matrix
Matrixes Returns the gathered Coordinates.
Click to show internal directories.
Click to hide internal directories.