Searched defs:nesting (Results 1 - 3 of 3) sorted by relevance

/inkscape/src/livarot/
H A DShapeMisc.cpp330 Shape::ConvertToFormeNested (Path * dest, int nbP, Path * *orig, int /*wildPath*/,int &nbNest,int *&nesting,int *&contStart,bool splitWhenForced) argument
332 nesting=NULL;
464 nesting=(int*)g_realloc(nesting,(nbNest+1)*sizeof(int));
468 nesting[nbNest++]=parentContour;
471 nesting[nbNest++]=-1; // contient des bouts de coupure -> a part
505 nesting=(int*)g_realloc(nesting,(nbNest+1)*sizeof(int));
509 nesting[nbNest++]=parentContour;
512 nesting[nbNes
[all...]
H A DPathCutting.cpp613 Path** Path::SubPathsWithNesting(int &outNb,bool killNoSurf,int nbNest,int* nesting,int* conts) argument
645 if ( conts[j] == i && nesting[j] >= 0 ) {
646 int parentMvt=conts[nesting[j]];
/inkscape/src/
H A Dsplivarot.cpp289 int* nesting=NULL; local
304 // for later reconstruction in objects, you also need to extract which path is parent of holes (nesting info)
305 theShape->ConvertToFormeNested(res, nbOriginaux, &originaux[0], 1, nbNest, nesting, conts);
643 int* nesting=NULL; local
658 // for later reconstruction in objects, you also need to extract which path is parent of holes (nesting info)
659 theShape->ConvertToFormeNested(res, nbOriginaux, &originaux[0], 1, nbNest, nesting, conts);
748 // that's why you needed the nesting
750 // to get the path for each part of the polygon. that's why you need the nesting info:
752 resPath=res->SubPathsWithNesting(nbRP, true, nbNest, nesting, conts);
756 if ( nesting ) fre
[all...]

Completed in 31 milliseconds