class Magick::RVG::Image

def add_primitives(gc) #:nodoc:

:nodoc:
def add_primitives(gc)      #:nodoc:
    # Do not render if width or height is 0
    return if @width == 0 || @height == 0
    gc.push
    add_transform_primitives(gc)
    add_style_primitives(gc)
    add_composite_primitive(gc)
    gc.pop
end