예제 #1
0
파일: geos.go 프로젝트: Kotaimen/imposm3
func (this *Geos) NumGeoms(geom *Geom) int32 {
	count := int32(C.GEOSGetNumGeometries_r(this.v, geom.v))
	return count
}
예제 #2
0
파일: cwrappers.go 프로젝트: helmi03/gogeos
func cGEOSGetNumGeometries(g *C.GEOSGeometry) C.int {
	handlemu.Lock()
	defer handlemu.Unlock()
	return C.GEOSGetNumGeometries_r(handle, g)
}