ntree/point.go

9 lines
174 B
Go
Raw Normal View History

2015-03-25 16:53:31 +00:00
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{}
}