Sha256: 3b03a090074c0cde5c74ed5ee981c07f33eb37e4174482de902b97b38658e317
Contents?: true
Size: 363 Bytes
Versions: 2
Compression:
Stored size: 363 Bytes
Contents
module PDFium # The size of an object. Used with both Page and Image class BoundingBox # dimensions for the BoundingBox. Fixnum given in terms of points attr_reader :left, :right, :top, :bottom # Left, Right, Top, Bottom def initialize(l,r,t,b) @left=l; @right=r; @top=t; @bottom=b end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
pdfium-0.0.2 | lib/pdfium/bounding_box.rb |
pdfium-0.0.1 | lib/pdfium/bounding_box.rb |