Sha256: f973253d7e1286c1522bbfa3f4fd1283ab6e50ba4ecba5f1a0d84d4e458c1015
Contents?: true
Size: 811 Bytes
Versions: 10
Compression:
Stored size: 811 Bytes
Contents
# ----------------------------------------------------------------------------- # # MultiLineString feature interface # # ----------------------------------------------------------------------------- module RGeo module Feature # == SFS 1.1 Description # # A MultiLineString is a MultiCurve whose elements are LineStrings. # # == Notes # # MultiLineString is defined as a module and is provided primarily # for the sake of documentation. Implementations need not necessarily # include this module itself. Therefore, you should not depend on the # kind_of? method to check type. Instead, use the provided check_type # class method (or === operator) defined in the Type module. module MultiLineString include MultiCurve extend Type end end end
Version data entries
10 entries across 10 versions & 2 rubygems