Home | History | Annotate | Download | only in src

Lines Matching refs:vect

99     CvPoint2D32f* vect = (CvPoint2D32f*)cvAlloc( n * sizeof(vect[0]) );
139 vect[i].x = (float)dx;
140 vect[i].y = (float)dy;
150 double ax = vect[n-1].x;
151 double ay = vect[n-1].y;
155 double bx = vect[i].x;
156 double by = vect[i].y;
189 float dp0 = base_a * vect[seq[0]].x + base_b * vect[seq[0]].y;
190 float dp1 = -base_b * vect[seq[1]].x + base_a * vect[seq[1]].y;
191 float dp2 = -base_a * vect[seq[2]].x - base_b * vect[seq[2]].y;
192 float dp3 = base_b * vect[seq[3]].x - base_a * vect[seq[3]].y;
212 float lead_x = vect[pindex].x*inv_vect_length[pindex];
213 float lead_y = vect[pindex].y*inv_vect_length[pindex];
342 cvFree( &vect );