func (this *Geos) IsEmpty(geom *Geom) bool { if C.GEOSisEmpty_r(this.v, geom.v) == 1 { return true } return false }
func cGEOSisEmpty(g1 *C.GEOSGeometry) C.char { handlemu.Lock() defer handlemu.Unlock() return C.GEOSisEmpty_r(handle, g1) }