dxx-rebirth/common/3d/clipper.h

34 lines
799 B
C
Raw Normal View History

2006-03-20 17:12:09 +00:00
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.
*/
2006-03-20 17:12:09 +00:00
/*
*
* Header for clipper.c
*
*/
#ifndef _CLIPPER_H
#define _CLIPPER_H
2013-10-26 03:40:50 +00:00
#include "pstypes.h"
#ifdef __cplusplus
2013-10-26 03:40:50 +00:00
struct g3s_codes;
struct g3s_point;
2014-11-16 19:14:50 +00:00
#include "compiler-array.h"
struct polygon_clip_points : array<g3s_point *, MAX_POINTS_IN_POLY> {};
2006-03-20 17:12:09 +00:00
extern void free_temp_point(g3s_point *p);
const polygon_clip_points &clip_polygon(polygon_clip_points &src,polygon_clip_points &dest,int *nv,g3s_codes *cc);
2006-03-20 17:12:09 +00:00
extern void init_free_points(void);
2014-11-13 03:19:45 +00:00
void clip_line(g3s_point *&p0,g3s_point *&p1,ubyte codes_or);
2006-03-20 17:12:09 +00:00
#endif
2006-03-20 17:12:09 +00:00
#endif