class DotGrid::BoundingBox

Attributes

height[RW]
upper_left[RW]
width[RW]

Public Class Methods

new(params) click to toggle source
# File lib/dot_grid/bounding_box.rb, line 9
def initialize(params)
  @upper_left = params[:upper_left]
  @width = params[:width]
  @height = params[:height]
end