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

/inkscape/src/libnrtype/
H A DLayout-TNG-OutIter.cpp33 double this_x_difference = fabs(_characters[char_index].x + _characters[char_index].span(this).x_start + _characters[char_index].chunk(this).left_x - local_x); local
34 if (this_x_difference < best_x_difference) {
36 best_x_difference = this_x_difference;
41 double this_x_difference; local
42 if (char_index == 0) this_x_difference = fabs(_spans.front().x_end + _chunks.front().left_x - local_x);
43 else this_x_difference = fabs(_characters[char_index - 1].span(this).x_end + _characters[char_index - 1].chunk(this).left_x - local_x);
44 if (this_x_difference < best_x_difference) {
46 best_x_difference = this_x_difference;

Completed in 16 milliseconds