module Magick::RVG::TextLink

def add_primitives(gc)

def add_primitives(gc)
  @parent.cx = @x if @x
  @parent.cy = @y if @y
  super
end

def cx

def cx
  @parent.cx
end

def cx=(x)

def cx=(x)
  @parent.cx = x
end

def cy

def cy
  @parent.cy
end

def cy=(y)

def cy=(y)
  @parent.cy = y
end