Sha256: ca5bb2fe227b3e052538d57b580c97f9d5cb70ab271b4fbc2a31e7a7da183595

Contents?: true

Size: 1.13 KB

Versions: 2

Compression:

Stored size: 1.13 KB

Contents

module Calculations # :nodoc:all

  # A location calculation recalculates a 1-d location
  # to the Picky internal 1-d "grid".
  #
  # For example, if you have a location x == 12.3456,
  # it will be recalculated into 3, if the minimum is 9
  # and the gridlength is 1.
  #
  class Location

    attr_reader :minimum, :precision, :grid

    def initialize user_grid, precision = nil
      @user_grid = user_grid
      @precision = precision || 1
      @grid      = @user_grid / (@precision + 0.5)
    end

    def minimum= minimum
      # Add a margin of 1 user grid.
      #
      minimum -= @user_grid

      # Add plus 1 grid so that the index key never falls on 0.
      # Why? to_i maps by default to 0.
      #
      minimum -= @grid

      @minimum = minimum
    end

    #
    #
    def add_margin length
      @minimum -= length
    end

    #
    #
    def recalculated_range location
      range recalculate(location)
    end
    #
    #
    def range around_location
      (around_location - @precision)..(around_location + @precision)
    end
    #
    #
    def recalculate location
      ((location - @minimum) / @grid).floor
    end

  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
picky-2.7.0 lib/picky/calculations/location.rb
picky-2.6.0 lib/picky/calculations/location.rb