class Qt::PolygonF

Public Instance Methods

each() { |point(i)| ... } click to toggle source
# File lib/Qt/qtruby4.rb, line 1683
def each
  for i in 0...count
    yield point(i)
  end
  return self
end