You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The existing functions GDrawingSurface::drawPolygon and GDrawingSurface::fillPolygon currently only accept std::initializer_lists as arguments. This means that it's not possible to dynamically generate a list of points that make up the polygon (say, as a Vector<GPoint>) and pass that as an argument to these functions.
The text was updated successfully, but these errors were encountered:
The existing functions
GDrawingSurface::drawPolygon
andGDrawingSurface::fillPolygon
currently only acceptstd::initializer_list
s as arguments. This means that it's not possible to dynamically generate a list of points that make up the polygon (say, as aVector<GPoint>
) and pass that as an argument to these functions.The text was updated successfully, but these errors were encountered: