Sha256: 52c1cc326df8ebab66cc1fa4e94eeb54a0dcd69994980783e7912ec1834022c1
Contents?: true
Size: 277 Bytes
Versions: 4
Compression:
Stored size: 277 Bytes
Contents
# frozen_string_literal: true require 'yaml' module Robot class Table attr_reader :min_point, :max_point def initialize(min_point: Point.new(x: 0, y: 0), max_point: Point.new(x: 4, y: 4)) @min_point = min_point @max_point = max_point end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
robot_rea-0.1.9 | lib/robot/table.rb |
robot_rea-0.1.8 | lib/robot/table.rb |
robot_rea-0.1.7 | lib/robot/table.rb |
robot_rea-0.1.6 | lib/robot/table.rb |