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

/inkscape/src/libnrtype/
H A DTextWrapper.cpp895 void text_wrapper::KernYForLastAddition(double *i_kern_y, int i_len, double scale) argument
897 if ( i_kern_y == NULL || i_len <= 0 || last_addition < 0 || last_addition >= uni32_length || uni32_length <= 0 ) return;
904 for (int i = 0; i < i_len; i++) kern_y[last_addition + i] = i_kern_y[i] * scale;
921 void text_wrapper::KernYForLastAddition(GList *i_kern_y, double scale) argument
923 if ( i_kern_y == NULL || last_addition < 0 || last_addition >= uni32_length || uni32_length <= 0 ) return;
929 GList *l = i_kern_y;

Completed in 60 milliseconds