Searched refs:n_crossings (Results 1 - 3 of 3) sorted by relevance

/inkscape/src/2geom/
H A Dsolve-bezier-one-d.cpp83 size_t n_crossings = 0; local
95 ++n_crossings;
100 //std::cout << "n_crossings = " << n_crossings << std::endl;
101 if (n_crossings == 0) return; // no solutions here
103 if (n_crossings == 1) /* Unique solution */
H A Dsolve-bezier-parametric.cpp88 unsigned n_crossings = 0; /* Number of zero-crossings */ local
94 n_crossings++;
97 return n_crossings;
H A Dsolve-bezier.cpp158 size_t n_crossings = 0; local
170 ++n_crossings;
177 ++n_crossings;
180 //std::cout << "n_crossings = " << n_crossings << std::endl;
181 if (n_crossings == 0) return; // no solutions here
183 if (n_crossings == 1) /* Unique solution */

Completed in 15 milliseconds