class Magick::RVG::Tref

@private

Public Class Methods

new(obj, x, y, parent) click to toggle source
Calls superclass method Magick::RVG::TextBase::new
# File lib/rvg/text.rb, line 106
def initialize(obj, x, y, parent)
  @x, @y = Magick::RVG.convert_to_float(x, y, :allow_nil)
  super(nil)
  @tspans << obj
  @parent = parent
end