Lines Matching defs:numParametricSegments_pow4
84 bool stroke180FitsInPatch(float numParametricSegments_pow4) {
85 return numParametricSegments_pow4 <= fMaxParametricSegments_pow4[0];
89 bool stroke180FitsInPatch_withJoin(float numParametricSegments_pow4) {
90 return numParametricSegments_pow4 <= fMaxParametricSegments_pow4_withJoin[0];
94 bool stroke360FitsInPatch(float numParametricSegments_pow4) {
95 return numParametricSegments_pow4 <= fMaxParametricSegments_pow4[1];
99 bool stroke360FitsInPatch_withJoin(float numParametricSegments_pow4) {
100 return numParametricSegments_pow4 <= fMaxParametricSegments_pow4_withJoin[1];
375 float numParametricSegments_pow4;
377 numParametricSegments_pow4 = wangs_formula::quadratic_pow4(fParametricPrecision, p);
380 numParametricSegments_pow4 = n*n;
382 if (this->stroke180FitsInPatch(numParametricSegments_pow4) || maxDepth == 0) {
384 this->stroke180FitsInPatch_withJoin(numParametricSegments_pow4),
393 float numParametricSegments = wangs_formula::root4(numParametricSegments_pow4);
445 float numParametricSegments_pow4 = wangs_formula::cubic_pow4(fParametricPrecision, p);
446 if (this->stroke180FitsInPatch(numParametricSegments_pow4) || maxDepth == 0) {
448 this->stroke180FitsInPatch_withJoin(numParametricSegments_pow4),
457 float numParametricSegments = wangs_formula::root4(numParametricSegments_pow4);
795 float numParametricSegments_pow4 =
797 if (!patchWriter.stroke180FitsInPatch(numParametricSegments_pow4)) {
806 numParametricSegments_pow4);
835 float numParametricSegments_pow4 = n*n;
836 if (!patchWriter.stroke180FitsInPatch(numParametricSegments_pow4)) {
845 numParametricSegments_pow4);
859 float numParametricSegments_pow4 =
861 if (!patchWriter.stroke360FitsInPatch(numParametricSegments_pow4) ||
874 numParametricSegments_pow4);