Home | History | Annotate | Download | only in src

Lines Matching refs:lD

327 inline void RFace::ResizeRect(CvRect Rect,CvRect * lpRect,long lDir,long lD)
331 lpRect->x = Rect.x - lD;
332 lpRect->y = Rect.y - lD;
333 lpRect->width = Rect.width + 2*lD;
334 lpRect->height = Rect.height + 2*lD;
338 lpRect->x = Rect.x + lD;
339 lpRect->y = Rect.y + lD;
340 if (Rect.width - 2*lD >= 0)
342 lpRect->width = Rect.width - 2*lD;
346 if (Rect.height - 2*lD >= 0)
348 lpRect->height = Rect.height - 2*lD;
353 }// inline void RFace::ResizeRect(CvRect * lpRect,long lDir,long lD)