Searched refs:maxPt (Results 1 - 6 of 6) sorted by relevance

/inkscape/src/livarot/
H A DPathSimplify.cpp165 data.nbPt = data.maxPt = data.inPt = 0;
323 if ( N >= data.maxPt ) {
324 data.maxPt = 2 * N + 1;
325 data.Xk = (double *) g_realloc(data.Xk, data.maxPt * sizeof(double));
326 data.Yk = (double *) g_realloc(data.Yk, data.maxPt * sizeof(double));
327 data.Qk = (double *) g_realloc(data.Qk, data.maxPt * sizeof(double));
328 data.tk = (double *) g_realloc(data.tk, data.maxPt * sizeof(double));
329 data.lk = (double *) g_realloc(data.lk, data.maxPt * sizeof(double));
330 data.fk = (char *) g_realloc(data.fk, data.maxPt * sizeof(char));
H A DShape.cpp46 maxPt = 0;
53 maxPt = 0;
83 pData.resize(maxPt);
222 vorpData.resize(maxPt);
292 if (pointCount > maxPt)
294 maxPt = pointCount;
296 pData.resize(maxPt);
298 vorpData.resize(maxPt);
323 if (numberOfPoints() >= maxPt)
325 maxPt
[all...]
H A DShapeMisc.cpp553 if (numberOfPoints() > maxPt)
555 maxPt = numberOfPoints();
557 pData.resize(maxPt);
741 if (numberOfPoints() > maxPt)
743 maxPt = numberOfPoints();
745 pData.resize(maxPt);
H A DPath.h378 int nbPt,maxPt,inPt; member in struct:Path::fitting_tables
H A DShape.h363 int maxPt; // [FIXME: remove this] member in class:Shape
551 // these ones are dynamically kept at a length of maxPt or maxAr
H A DShapeSweep.cpp77 if (numberOfPoints() > maxPt)
79 maxPt = numberOfPoints();
81 pData.resize(maxPt);

Completed in 35 milliseconds