class Magick::RVG::TextBase

def d(x, y = 0)

Add x and y to the current text position.
def d(x, y = 0)
  @dx, @dy = Magick::RVG.convert_to_float(x, y)
  yield(self) if block_given?
  self
end