blob: 111d3b5443cdc54c336216321a919eb6f19067b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
extern void drawLineComponent(poly * , int );
extern void drawOpaquePolygon(poly * , GC , GC , int );
extern poly * copyPolygons(poly * );
extern void minMaxPolygons(poly * );
extern int polyCompare(poly * , poly * );
extern void calcEyePoint(void );
extern void drawRenderedPolygon(poly * , int );
extern void freePointResevoir(void);
extern void freeListOfPolygons(poly * );
extern void drawPolygons(int );
extern int lessThan(float , float );
extern int greaterThan(float , float );
extern int isNaN(float );
extern int isNaNPoint(float , float , float );
extern int equal(float , float );
|