class Tiling::FrameExtents

Public: DĂ©coration de fenĂȘtre.

Attributes

bottom[R]
left[R]
right[R]
top[R]

Public Class Methods

new(extents) click to toggle source
# File lib/tiling/frame_extents.rb, line 8
def initialize extents
  @left = extents[0]
  @right = extents[1]
  @top = extents[2]
  @bottom = extents[3]
end