Lines Matching defs:point
321 * Return enum GlyphEdge of box where point (x, y) lies.
323 * @param x x point coordinate
324 * @param y y point coordinate
407 int8_t point[2];
410 interp_point(point, x0, y0, x1, y1, ipoint, npoints);
414 for (irow = point[1]; irow >= 0; irow--)
415 pglyph[point[0] + irow * side_length] = 1;
419 for (irow = point[1]; irow < side_length; irow++)
420 pglyph[point[0] + irow * side_length] = 1;
424 for (icol = point[0]; icol >= 0; icol--)
425 pglyph[icol + point[1] * side_length] = 1;
429 for (icol = point[0]; icol < side_length; icol++)
430 pglyph[icol + point[1] * side_length] = 1;