Correct wxGraphicsContext::StrokeLines(n, points) documentation.

This method draws a single polyline.

Closes #13099.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@67353 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2011-03-31 09:28:30 +00:00
parent 02f170d7be
commit 25941fc53b

View File

@@ -620,8 +620,10 @@ public:
virtual void StrokeLines(size_t n, const wxPoint2DDouble* beginPoints,
const wxPoint2DDouble* endPoints);
/**
Stroke disconnected lines from begin to end points, fastest method
available for this purpose.
Stroke lines connecting all the points.
Unlike the other overload of this function, this method draws a single
polyline and not a number of disconnected lines.
*/
virtual void StrokeLines(size_t n, const wxPoint2DDouble* points);