Sha256: d1b4789b79b7c5c6f07c216840cf75e0e23dc5e89ed3964184f6ce9ec10f8efe
Contents?: true
Size: 503 Bytes
Versions: 3
Compression:
Stored size: 503 Bytes
Contents
class GeoRuby::SimpleFeatures::LinearRing class << self def from_points_with_close_support(*arguments) from_points_without_close_support(*arguments).close! end alias_method_chain :from_points, :close_support def from_coordinates_with_close_support(*arguments) from_coordinates_without_close_support(*arguments).close! end alias_method_chain :from_coordinates, :close_support end def to_rgeo rgeo_factory.linear_ring(points.collect(&:to_rgeo)) end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
georuby-ext-0.0.5 | lib/georuby-ext/georuby/linear_ring.rb |
georuby-ext-0.0.4 | lib/georuby-ext/georuby/linear_ring.rb |
georuby-ext-0.0.3 | lib/georuby-ext/georuby/linear_ring.rb |