// IndexQuery adds a geom to the index with the id. func (this *Geos) IndexAdd(index *Index, geom *Geom) { index.mu.Lock() defer index.mu.Unlock() id := len(index.geoms) C.IndexAdd(this.v, index.v, geom.v, C.size_t(id)) index.geoms = append(index.geoms, IndexGeom{geom}) }
// IndexQuery adds a geom to the index with the id. func (this *Geos) IndexAdd(index *Index, geom *Geom) { index.mu.Lock() defer index.mu.Unlock() id := len(index.geoms) C.IndexAdd(this.v, index.v, geom.v, C.size_t(id)) prep := this.Prepare(geom) index.geoms = append(index.geoms, IndexGeom{&sync.Mutex{}, geom, prep}) }