class Magick::RVG

def add_outermost_primitives(gc)

Other tags:
    Private: -
def add_outermost_primitives(gc)
  add_transform_primitives(gc)
  gc.push
  add_viewbox_primitives(@width, @height, gc)
  add_style_primitives(gc)
  @content.each { |element| element.add_primitives(gc) }
  gc.pop
  self
end