class Rendaku::Book

Attributes

first_page[RW]
height[RW]
last_page[RW]

Public Class Methods

new(fp, lp, h) click to toggle source
# File lib/rendaku.rb, line 8
def initialize fp, lp, h
  @first_page = fp
  @last_page  = lp
  @height     = h
end