Sha256: 3d36416fe704051f9358ce31b4583d2f79d4815c72cd2275e86f76708bc8e830
Contents?: true
Size: 409 Bytes
Versions: 7
Compression:
Stored size: 409 Bytes
Contents
require 'geo_ruby/simple_features/line_string' module GeoRuby module SimpleFeatures #Represents a linear ring, which is a closed line string (see LineString). Currently, no check is performed to verify if the linear ring is really closed. class LinearRing < LineString def initialize(srid= DEFAULT_SRID,with_z=false,with_m=false) super(srid,with_z,with_m) end end end end
Version data entries
7 entries across 7 versions & 3 rubygems