ntree/point.go
2020-03-29 23:55:31 -07:00

9 lines
174 B
Go

package ntree
// Point information to be stored in an NTree leaf node.
type Point struct {
Coords []float64
// Arbitrary data attached to this Point.
Data *interface{}
}