Sha256: 7c8784d09e818f0d5b744bd6aea972123b281eabbdce411e5078f9cfca354b49
Contents?: true
Size: 574 Bytes
Versions: 2
Compression:
Stored size: 574 Bytes
Contents
require_relative 'line_string' module OGR # NOTE: {{#type}} will return :wkbLineString (read: 2D instead of 2.5D) until # a Z value is set. class LineString25D < LineString def initialize(geometry_ptr = nil, spatial_reference: nil) geometry_ptr ||= OGR::Geometry.create(:wkbLineString25D) super(geometry_ptr, spatial_reference: spatial_reference) end # Adds a point to a LineString or Point geometry. # # @param x [Float] # @param y [Float] # @param z [Float] def add_point(x, y, z) super(x, y, z) end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ffi-gdal-1.0.0.beta7 | lib/ogr/geometries/line_string_25d.rb |
ffi-gdal-1.0.0.beta6 | lib/ogr/geometries/line_string_25d.rb |