Method: RGeo::Feature::Geometry#sym_difference

Defined in:
lib/rgeo/feature/geometry.rb

#sym_difference(_another_geometry) ⇒ Object

SFS 1.1 Description

Returns a geometric object that represents the Point set symmetric difference of this geometric object with another_geometry.

Notes

Returns an object that supports the Geometry interface.

Although implementations are free to attempt to handle another_geometry values that do not share the same factory as this geometry, strictly speaking, the result of performing operations on objects from different factories is undefined.



601
602
603
# File 'lib/rgeo/feature/geometry.rb', line 601

def sym_difference(_another_geometry)
  raise Error::UnsupportedOperation, "Method #{self.class}#sym_difference not defined."
end