Home | History | Annotate | Download | only in wince

Lines Matching defs:npoints

238         int npoints = i->size();
239 if (!npoints)
244 if (npoints > 2)
245 winPoints = new POINT[npoints + 1];
247 winPoints = new POINT[npoints];
251 for (int i2 = 0; i2 < npoints; ++i2) {
257 for (int i2 = 0; i2 < npoints; ++i2) {
263 if (fill && winPoints[npoints - 1] != winPoints[0]) {
264 winPoints[npoints].x = winPoints[0].x;
265 winPoints[npoints].y = winPoints[0].y;
266 ++npoints;
270 ::Polygon(dc, winPoints, npoints);
272 ::Polyline(dc, winPoints, npoints);