class Magick::RVG

def initialize(width = nil, height = nil)

groups unless overridden by an inner container or the object itself.
on the object are used by contained objects such as shapes, text, and
RVG objects are _containers_. That is, styles and transforms defined

#background_fill= or #background_image= methods.
canvas is transparent. You can specify a different canvas with the
Drawing occurs on a +canvas+ created by the #draw method. By default the

corner in the containing canvas on which the nested RVG object is placed.
On nested RVG objects [+x+, +y+] is the coordinate of the upper-left
The +x+ and +y+ arguments have no meaning for the outermost RVG object.
You can group the drawing method calls in the optional associated block.
one or more drawing methods on the RVG object.
Draw a +width+ x +height+ image. The image is specified by calling
def initialize(width = nil, height = nil)
  super
  @width = width
  @height = height
  @content = Content.new
  @canvas = nil
  @background_fill = nil
  @background_fill_opacity = 1.0 # applies only if background_fill= is used
  @background_position = :scaled
  @background_pattern, @background_image, @desc, @title, @metadata = nil
  @x = 0.0
  @y = 0.0
  @nested = false
  yield(self) if block_given?
end