Home | History | Annotate | Download | only in src

Lines Matching refs:p1

1557 icvThickLine( CvMat* img, CvPoint p0, CvPoint p1, const void* color,
1564 p1.x <<= XY_SHIFT - shift;
1565 p1.y <<= XY_SHIFT - shift;
1575 p1.x = (p1.x + (XY_ONE>>1)) >> XY_SHIFT;
1576 p1.y = (p1.y + (XY_ONE>>1)) >> XY_SHIFT;
1577 icvLine( img, p0, p1, color, line_type );
1580 icvLine2( img, p0, p1, color );
1583 icvLineAA( img, p0, p1, color );
1588 double dx = (p0.x - p1.x)*INV_XY_ONE, dy = (p1.y - p0.y)*INV_XY_ONE;
1604 pt[2].x = p1.x - dp.x;
1605 pt[2].y = p1.y - dp.y;
1606 pt[3].x = p1.x + dp.x;
1607 pt[3].y = p1.y + dp.y;
1628 p0 = p1;