Sha256: 9fefe7745270008b0256b4fc82bbdf93aed668242661ddf048b2868861a64487
Contents?: true
Size: 469 Bytes
Versions: 12
Compression:
Stored size: 469 Bytes
Contents
# frozen_string_literal: true require_relative '../geometry_types/container' module OGR class MultiPoint include OGR::Geometry include GeometryTypes::Container # @param [FFI::Pointer] geometry_ptr def initialize(geometry_ptr = nil, spatial_reference: nil) geometry_ptr ||= OGR::Geometry.create(:wkbMultiPoint) initialize_from_pointer(geometry_ptr) self.spatial_reference = spatial_reference if spatial_reference end end end
Version data entries
12 entries across 12 versions & 1 rubygems