Searched refs:nb2 (Results 1 - 2 of 2) sorted by relevance
/inkscape/src/ui/tools/ |
H A D | calligraphic-tool.cpp | 1077 gint const nb2 = Geom::bezier_fit_cubic_r(b2, this->point2, this->npoints, local 1079 g_assert( nb2 * BEZIER_SIZE <= gint(G_N_ELEMENTS(b2)) ); 1081 if ( nb1 != -1 && nb2 != -1 ) { 1084 g_print("nb1:%d nb2:%d\n", nb1, nb2); 1093 this->currentcurve->lineto(b2[BEZIER_SIZE*(nb2-1) + 3]); 1094 for (Geom::Point *bp2 = b2 + BEZIER_SIZE * ( nb2 - 1 ); bp2 >= b2; bp2 -= BEZIER_SIZE) { 1109 for (Geom::Point *bp2 = b2; bp2 < b2 + BEZIER_SIZE * nb2; bp2 += BEZIER_SIZE) {
|
H A D | eraser-tool.cpp | 928 gint const nb2 = Geom::bezier_fit_cubic_r(b2, this->point2, this->npoints, tolerance_sq, BEZIER_MAX_BEZIERS); local 929 g_assert( nb2 * BEZIER_SIZE <= gint(G_N_ELEMENTS(b2)) ); 931 if ( nb1 != -1 && nb2 != -1 ) { 934 g_print("nb1:%d nb2:%d\n", nb1, nb2); 946 this->currentcurve->lineto(b2[BEZIER_SIZE*(nb2-1) + 3]); 948 for (Geom::Point *bp2 = b2 + BEZIER_SIZE * ( nb2 - 1 ); bp2 >= b2; bp2 -= BEZIER_SIZE) { 966 for (Geom::Point *bp2 = b2; bp2 < b2 + BEZIER_SIZE * nb2; bp2 += BEZIER_SIZE) {
|
Completed in 26 milliseconds