Sha256: 51809860ba6b9f278544a45562778a249f1b1d5112f1e4b512eac8f806293c14
Contents?: true
Size: 448 Bytes
Versions: 1
Compression:
Stored size: 448 Bytes
Contents
module Geomagic module Extensions module GeoRubyExt module Utility class GeoRuby::SimpleFeatures::Polygon def to_coordinates _points = [] self.rings.each do |points| points.each do |point| _points << [point.lat, point.lng] end end _points end end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
geomagic-0.0.2 | lib/geomagic/extensions/geo_ruby_ext/utility.rb |