class Magick::RVG::Utility::GraphicContext

def translate(tx, ty)

def translate(tx, ty)
  tx, ty = Magick::RVG.convert_to_float(tx, ty)
  @gc.translate(tx, ty)
  @tx = tx
  @ty = ty
  concat_matrix
  nil
end