Method: Qt::PointF#_dump

Defined in:
lib/ruber/qt_sugar.rb

#_dump(_) ⇒ Object



128
129
130
131
132
133
134
# File 'lib/ruber/qt_sugar.rb', line 128

def _dump _
  loc = Qt::Locale.c
  loc.number_options = Qt::Locale::OmitGroupSeparator
  sx = loc.to_string( self.x )
  sy = loc.to_string( self.y )
  "#{sx};#{sy}"
end