Class: RGeo::Geos::CAPIGeometryCollectionImpl
- Inherits:
-
Object
- Object
- RGeo::Geos::CAPIGeometryCollectionImpl
- Includes:
- CAPIGeometryCollectionMethods, CAPIGeometryMethods
- Defined in:
- lib/rgeo/geos/capi_feature_classes.rb,
ext/geos_c_impl/globals.c
Overview
:nodoc:
Class Method Summary collapse
-
.create(factory, array) ⇒ Object
Class methods for geometry collection classes.
Methods included from CAPIGeometryCollectionMethods
#[], #each, #eql?, #geometry_n, #geometry_type, #hash, #node, #num_geometries, #rep_equals?, #size
Methods included from CAPIGeometryMethods
#*, #+, #-, #==, #_as_text, #_steal, #as_binary, #as_text, #boundary, #buffer, #buffer_with_style, #contains?, #convex_hull, #crosses?, #difference, #dimension, #disjoint?, #distance, #empty?, #encode_with, #envelope, #eql?, #equals?, #factory, #factory=, #geometry_type, #init_with, #initialize_copy, #initialized?, #inspect, #intersection, #intersects?, #invalid_reason, #is_empty?, #is_simple?, #marshal_dump, #marshal_load, #overlaps?, #point_on_surface, #prepare!, #prepared?, #relate?, #rep_equals?, #simple?, #simplify, #simplify_preserve_topology, #srid, #sym_difference, #touches?, #unary_union, #union, #valid?, #within?
Class Method Details
.create(factory, array) ⇒ Object
Class methods for geometry collection classes
557 558 559 560 |
# File 'ext/geos_c_impl/geometry_collection.c', line 557
static VALUE cmethod_geometry_collection_create(VALUE module, VALUE factory, VALUE array)
{
return create_geometry_collection(module, GEOS_GEOMETRYCOLLECTION, factory, array);
}
|