Home | History | Annotate | Download | only in src

Lines Matching refs:det

3532     float det;
3575 det = y21*x43 - x21*y43;
3576 if(fabs(det) < LEE_CONST_ZERO)
3579 k = (x43*y31 - y43*x31)/det;
3580 m = (x21*y31 - y21*x31)/det;
4116 float det = pVector21->y * pVector43->x - pVector21->x * pVector43->y;
4117 if(fabs(det) < LEE_CONST_ZERO)
4126 Point.x = (float)((pVector43->x*d1 - pVector21->x*d2)/det);
4127 Point.y = (float)((pVector43->y*d1 - pVector21->y*d2)/det);
4254 float det = pVector21->y * pVector43->x - pVector21->x * pVector43->y;
4255 if(fabs(det) < LEE_CONST_ZERO)
4264 Point.x = (float)((pVector43->x*d1 - pVector21->x*d2)/det);
4265 Point.y = (float)((pVector43->y*d1 - pVector21->y*d2)/det);