Lines Matching refs:point

1048   /*    x1   :: The x-coordinate of the segment's start point.             */
1050 /* y1 :: The y-coordinate of the segment's start point. */
1052 /* x2 :: The x-coordinate of the segment's end point. */
1054 /* y2 :: The y-coordinate of the segment's end point. */
1187 /* x1 :: The x-coordinate of the segment's start point. */
1189 /* y1 :: The y-coordinate of the segment's start point. */
1191 /* x2 :: The x-coordinate of the segment's end point. */
1193 /* y2 :: The y-coordinate of the segment's end point. */
1419 /* x :: The x-coordinate of the segment's end point (its start point */
1422 /* y :: The y-coordinate of the segment's end point (its start point */
1513 /* cx :: The x-coordinate of the arc's new control point. */
1515 /* cy :: The y-coordinate of the arc's new control point. */
1517 /* x :: The x-coordinate of the arc's end point (its start point is */
1520 /* y :: The y-coordinate of the arc's end point (its start point is */
1629 /* cx1 :: The x-coordinate of the arc's first new control point. */
1631 /* cy1 :: The y-coordinate of the arc's first new control point. */
1633 /* cx2 :: The x-coordinate of the arc's second new control point. */
1635 /* cy2 :: The y-coordinate of the arc's second new control point. */
1637 /* x :: The x-coordinate of the arc's end point (its start point is */
1640 /* y :: The y-coordinate of the arc's end point (its start point is */
1774 /* weird cases, like when the first point is off the curve, or when */
1778 /* first :: The index of the first point in the contour. */
1780 /* last :: The index of the last point in the contour. */
1797 FT_Vector* point;
1801 unsigned tag; /* current point's state */
1820 point = points + first;
1829 /* A contour cannot start with a cubic control point! */
1833 /* check first point to determine origin */
1836 /* first point is conic control. Yes, this happens. */
1839 /* start at last point if it is on the curve */
1853 point--;
1860 while ( point < limit )
1862 point++;
1874 x = SCALED( point->x );
1875 y = SCALED( point->y );
1885 v_control.x = SCALED( point[0].x );
1886 v_control.y = SCALED( point[0].y );
1892 if ( point < limit )
1898 point++;
1902 x = SCALED( point[0].x );
1903 y = SCALED( point[0].y );
1942 if ( point + 1 > limit ||
1946 point += 2;
1949 x1 = SCALED( point[-2].x );
1950 y1 = SCALED( point[-2].y );
1951 x2 = SCALED( point[-1].x );
1952 y2 = SCALED( point[-1].y );
1960 if ( point <= limit )
1962 x3 = SCALED( point[0].x );
1963 y3 = SCALED( point[0].y );