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

/inkscape/src/libnrtype/
H A DTextWrapper.h90 void KernXForLastAddition(double *i_kern_x, int i_len, double scale = 1.0);
92 void KernXForLastAddition(GList *i_kern_x, double scale = 1.0);
H A DTextWrapper.cpp883 void text_wrapper::KernXForLastAddition(double *i_kern_x, int i_len, double scale) argument
885 if ( i_kern_x == NULL || i_len <= 0 || last_addition < 0 || last_addition >= uni32_length || uni32_length <= 0 ) return;
892 for (int i = 0; i < i_len; i++) kern_x[last_addition + i] = i_kern_x[i] * scale;
907 void text_wrapper::KernXForLastAddition(GList *i_kern_x, double scale) argument
909 if ( i_kern_x == NULL || last_addition < 0 || last_addition >= uni32_length || uni32_length <= 0 ) return;
915 GList *l = i_kern_x;

Completed in 16 milliseconds