Changeset 257 for libcaca/trunk/src/box.c
- Timestamp:
- Dec 18, 2003, 1:11:52 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/src/box.c
r246 r257 35 35 #include "caca_internals.h" 36 36 37 /** 38 * \brief Draw a box on the screen using the given character. 39 * 40 * \param x1 X coordinate of the upper-left corner of the box. 41 * \param y1 Y coordinate of the upper-left corner of the box. 42 * \param x2 X coordinate of the lower-right corner of the box. 43 * \param y2 Y coordinate of the lower-right corner of the box. 44 * \param c Character to draw the box outline with. 45 * \return void 46 */ 37 47 void caca_draw_box(int x1, int y1, int x2, int y2, char c) 38 48 { … … 43 53 } 44 54 55 /** 56 * \brief Draw a thin box on the screen. 57 * 58 * \param x1 X coordinate of the upper-left corner of the box. 59 * \param y1 Y coordinate of the upper-left corner of the box. 60 * \param x2 X coordinate of the lower-right corner of the box. 61 * \param y2 Y coordinate of the lower-right corner of the box. 62 * \return void 63 */ 45 64 void caca_draw_thin_box(int x1, int y1, int x2, int y2) 46 65 { … … 96 115 } 97 116 117 /** 118 * \brief Fill a box on the screen using the given character. 119 * 120 * \param x1 X coordinate of the upper-left corner of the box. 121 * \param y1 Y coordinate of the upper-left corner of the box. 122 * \param x2 X coordinate of the lower-right corner of the box. 123 * \param y2 Y coordinate of the lower-right corner of the box. 124 * \param c Character to fill the box with. 125 * \return void 126 */ 98 127 void caca_fill_box(int x1, int y1, int x2, int y2, char c) 99 128 {
Note: See TracChangeset
for help on using the changeset viewer.