class Magick::RVG

def add_primitives(gc)

Other tags:
    Private: -
def add_primitives(gc)
  raise ArgumentError, 'RVG width or height undefined' if @width.nil? || @height.nil?
  return self if @width.zero? || @height.zero?
  gc.push
  add_outermost_primitives(gc)
  gc.pop
end