Hi,

Simple question, is this intentional to return empty
GeometryCollection instance from createEmptyGeometry() function?
Currently, this function does the same as createGeometryCollection().

GeometryCollection*
GeometryFactory::createGeometryCollection() const
{
   return new GeometryCollection(NULL,this);
}

Geometry*
GeometryFactory::createEmptyGeometry() const
{
   return new GeometryCollection(NULL,this);
}

Cheers
-- 
Mateusz Łoskot
http://mateusz.loskot.net

_______________________________________________
geos-devel mailing list
geos-devel@geos.refractions.net
http://geos.refractions.net/mailman/listinfo/geos-devel

Reply via email to