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