Lines Matching refs:guess
41 * \param guess Position from where we should try to insert the first
44 int FloatLigne::AddBord(float spos, float sval, float epos, float eval, int guess)
61 if ( guess >= int(bords.size()) ) {
62 guess = -1;
77 InsertBord(n, spos, guess);
98 * \param guess Position from where we should try to insert the first
101 int FloatLigne::AddBord(float spos, float sval, float epos, float eval, float pente, int guess)
116 if ( guess >= int(bords.size()) ) {
117 guess=-1;
139 InsertBord(n - 1, spos, guess);
175 * \param guess Position from where we should try to insert the last
178 int FloatLigne::AddBordR(float spos, float sval, float epos, float eval, float pente, int guess)
181 // return AddBord(spos,sval,epos,eval,pente,guess);
194 if ( guess >= int(bords.size()) ) {
195 guess=-1;
217 InsertBord(n, epos, guess);
309 void FloatLigne::InsertBord(int no, float /*p*/, int guess)
323 if ( guess < 0 || guess >= int(bords.size()) ) {
344 int c = guess;