This website works better with JavaScript.
Home
Help
Sign In
cacalabs
/
libcaca
mirror of
https://github.com/cacalabs/libcaca.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
7
Wiki
Activity
Browse Source
* Renamed libee/circle.c to libee/conic.c because we'll do ellipsis.
tags/v0.99.beta14
Sam Hocevar
sam
21 years ago
parent
c4114e7b1c
commit
8f500351c9
3 changed files
with
5 additions
and
1 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libee/Makefile.am
+0
-0
libee/conic.c
+4
-0
libee/line.c
+ 1
- 1
libee/Makefile.am
View File
@@ -9,7 +9,7 @@ libee_a_SOURCES = \
io.c \
io.c \
math.c \
math.c \
line.c \
line.c \
ci
r
c
le
.c \
c
on
ic.c \
triangle.c \
triangle.c \
sprite.c \
sprite.c \
$(NULL)
$(NULL)
libee/circle.c → libee/conic.c
View File
+ 4
- 0
libee/line.c
View File
@@ -82,6 +82,10 @@ void ee_draw_thin_line(int x1, int y1, int x2, int y2)
clip_line(&s);
clip_line(&s);
}
}
/*
* XXX: The following functions are local.
*/
/**
/**
* \brief Generic Cohen-Sutherland line clipping function.
* \brief Generic Cohen-Sutherland line clipping function.
*
*
Write
Preview
Loading…
Cancel
Save