Changeset 205 for libcaca/trunk/src/line.c
- Timestamp:
- Nov 22, 2003, 1:45:25 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/src/line.c
r192 r205 4 4 * All Rights Reserved 5 5 * 6 * $Id$7 *8 6 * This library is free software; you can redistribute it and/or 9 7 * modify it under the terms of the GNU Lesser General Public … … 20 18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 21 19 * 02111-1307 USA 20 */ 21 22 /** \file line.c 23 * \version \$Id$ 24 * \author Sam Hocevar <sam@zoy.org> 25 * \brief Line drawing functions 26 * 27 * This file contains line and polyline drawing functions, with both thin 28 * and thick styles. 22 29 */ 23 30 … … 56 63 * \param y2 Y coordinate of the second point. 57 64 * \param c Character to draw the line with. 58 * \return nothing65 * \return void 59 66 */ 60 67 void caca_draw_line(int x1, int y1, int x2, int y2, char c) … … 94 101 * \param x2 X coordinate of the second point. 95 102 * \param y2 Y coordinate of the second point. 96 * \return nothing103 * \return void 97 104 */ 98 105 void caca_draw_thin_line(int x1, int y1, int x2, int y2) … … 131 138 * 132 139 * \param s a line structure 133 * \return nothing140 * \return void 134 141 */ 135 142 static void clip_line(struct line* s) … … 213 220 * 214 221 * \param s a line structure 215 * \return nothing222 * \return void 216 223 */ 217 224 static void draw_solid_line(struct line* s) … … 280 287 * 281 288 * \param s a line structure 282 * \return nothing289 * \return void 283 290 */ 284 291 static void draw_thin_line(struct line* s)
Note: See TracChangeset
for help on using the changeset viewer.