Method: RGeo::Geos::CAPIMultiPolygonImpl.create
- Defined in:
- ext/geos_c_impl/geometry_collection.c
.create(factory, array) ⇒ Object
555 556 557 558 559 |
# File 'ext/geos_c_impl/geometry_collection.c', line 555
static VALUE
cmethod_multi_polygon_create(VALUE module, VALUE factory, VALUE array)
{
return create_geometry_collection(module, GEOS_MULTIPOLYGON, factory, array);
}
|