# File lib/rvg/paint.rb, line 35
            def initialize(width=0, height=0, x=0, y=0)
                super()
                @width, @height, @x, @y = Magick::RVG.convert_to_float(width, height, x, y)
                @content = Content.new
                yield(self) if block_given?
            end