Lines Matching refs:bounds
453 bounds; in ReadPESImage() local
529 bounds.x1=65535.0; in ReadPESImage()
530 bounds.y1=65535.0; in ReadPESImage()
531 bounds.x2=(-65535.0); in ReadPESImage()
532 bounds.y2=(-65535.0); in ReadPESImage()
599 if ((double) x < bounds.x1) in ReadPESImage()
600 bounds.x1=(double) x; in ReadPESImage()
601 if ((double) x > bounds.x2) in ReadPESImage()
602 bounds.x2=(double) x; in ReadPESImage()
603 if ((double) y < bounds.y1) in ReadPESImage()
604 bounds.y1=(double) y; in ReadPESImage()
605 if ((double) y > bounds.y2) in ReadPESImage()
606 bounds.y2=(double) y; in ReadPESImage()
636 "baseProfile=\"full\" width=\"%g\" height=\"%g\">\n",bounds.x2-bounds.x1, in ReadPESImage()
637 bounds.y2-bounds.y1); in ReadPESImage()
643 blocks[i].color->blue,stitches[offset].x-bounds.x1, in ReadPESImage()
644 stitches[offset].y-bounds.y1); in ReadPESImage()
646 (void) FormatLocaleFile(file," L %g %g",stitches[offset+j].x-bounds.x1, in ReadPESImage()
647 stitches[offset+j].y-bounds.y1); in ReadPESImage()