Sha256: 348bccecdd79fea815151cec48d57c6ac2bda6150d3fe60d75c8ff83055d11cc
Contents?: true
Size: 477 Bytes
Versions: 1
Compression:
Stored size: 477 Bytes
Contents
class Prawn::SVG::Elements::Root < Prawn::SVG::Elements::Base def initialize(document, source = document.root, parent_calls = [], state = ::Prawn::SVG::State.new) super end def apply add_call 'fill_color', '000000' add_call 'transformation_matrix', @document.sizing.x_scale, 0, 0, @document.sizing.y_scale, 0, 0 add_call 'transformation_matrix', 1, 0, 0, 1, @document.sizing.x_offset, @document.sizing.y_offset end def container? true end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
prawn-svg-0.24.0 | lib/prawn/svg/elements/root.rb |