class Prawn::SVG::Elements::Root
Public Class Methods
Source
# File lib/prawn/svg/elements/root.rb, line 2 def initialize(document, source = document.root, parent_calls = [], state = ::Prawn::SVG::State.new) super end
Calls superclass method
Prawn::SVG::Elements::Base::new
Public Instance Methods
Source
# File lib/prawn/svg/elements/root.rb, line 10 def apply if [nil, 'inherit'].include?(properties.fill) || properties.fill.none? || properties.fill.color == :currentcolor add_call 'fill_color', Prawn::SVG::Color.default_color(@document.color_mode).value end 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
Source
# File lib/prawn/svg/elements/root.rb, line 6 def parse state.viewport_sizing = @document.sizing end