class Magick::RVG::Image

def add_primitives(gc)

Other tags:
    Private: -
def add_primitives(gc)
  # Do not render if width or height is 0
  return if @width.zero? || @height.zero?
  gc.push
  add_transform_primitives(gc)
  add_style_primitives(gc)
  add_composite_primitive(gc)
  gc.pop
end