class Origami::Destination::HorizontalFit
Class representing a Destination fitting a Page horizontally.
def self.[](page, top: 0)
_top_:: The vertical coord in the Page.
_page_:: The destination Page.
Creates a new horizontal fit destination.
def self.[](page, top: 0) self.new([page, :FitH, top]) end
def initialize(array)
def initialize(array) super(array) @page, _, @top = array end