Changeset 29 for trunk/src/helpers/gpih.c
- Timestamp:
- Jan 22, 2001, 8:28:54 AM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/helpers/gpih.c
r25 r29 361 361 POINTL ptl1; 362 362 363 for (us = 0; us < usWidth; us++) 363 for (us = 0; 364 us < usWidth; 365 us++) 364 366 { 365 367 GpiSetColor(hps, lColorLeft); 368 // draw left line 366 369 ptl1.x = rcl2.xLeft; 367 370 ptl1.y = rcl2.yBottom; … … 369 372 ptl1.y = rcl2.yTop; // V0.9.7 (2000-12-20) [umoeller] 370 373 GpiLine(hps, &ptl1); 374 // go right -> draw top 371 375 ptl1.x = rcl2.xRight; // V0.9.7 (2000-12-20) [umoeller] 372 376 GpiLine(hps, &ptl1); 377 // go down -> draw right 373 378 GpiSetColor(hps, lColorRight); 374 379 ptl1.y = rcl2.yBottom; 375 380 GpiLine(hps, &ptl1); 381 // go left -> draw bottom 376 382 ptl1.x = rcl2.xLeft; 377 383 GpiLine(hps, &ptl1);
Note:
See TracChangeset
for help on using the changeset viewer.