Lines Matching refs:coordPtr
69 Tk_Item *itemPtr, double *coordPtr));
525 * are coordPtr[0] and coordPtr[1] is inside the bitmap. If the
537 BitmapToPoint(canvas, itemPtr, coordPtr)
540 double *coordPtr; /* Pointer to x and y coordinates. */
554 if (coordPtr[0] < x1) {
555 xDiff = x1 - coordPtr[0];
556 } else if (coordPtr[0] > x2) {
557 xDiff = coordPtr[0] - x2;
562 if (coordPtr[1] < y1) {
563 yDiff = y1 - coordPtr[1];
564 } else if (coordPtr[1] > y2) {
565 yDiff = coordPtr[1] - y2;