File: CNintersect.h

package info (click to toggle)
plotmtv 1.4.1-5
  • links: PTS
  • area: main
  • in suites: potato
  • size: 4,024 kB
  • ctags: 5,006
  • sloc: ansic: 51,179; makefile: 1,976; fortran: 1,277; sh: 510; csh: 439
file content (47 lines) | stat: -rw-r--r-- 1,406 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
 * CNintersect.h - procedure declarations for intersection, clipping
 *                 and cutline routines.
 */

#ifndef CNintersect_defined
#define CNintersect_defined

/* Misc */
extern void CNnormalize_plane();
extern int  CNlongline();

/* Intersection procedures */
extern int  CNfind_tria_intsct_plane();
extern int  CNpoly3_intsct_plane();
extern int  CNpoly4_intsct_plane();
extern int  CNline_intsct_plane();

/* Cutline */
extern void         CNget_cutline();
extern void         CNcut_polygons();

/* Clipping */
extern void         CNclip_tria();
extern void         CNclip_rect();
extern void         CNclip_poly();
extern void         CNclip_curve();
extern void         CNclip_pointlist();
extern void         CNclip_x();
extern void         CNclip_y();
extern void         CNclip_z();
extern void         CNclip_t();
extern int          CNtria_in_bounds();
extern int          CNtria_in_xbounds();
extern int          CNtria_in_ybounds();
extern int          CNtria_in_zbounds();
extern int          CNtria_in_tbounds();
extern int          CNrect_in_bounds();
extern int          CNrect_in_xbounds();
extern int          CNrect_in_ybounds();
extern int          CNrect_in_zbounds();
extern int          CNrect_in_tbounds();
extern int          CNpoly_in_bounds();
extern int          CNcurve_in_bounds();
extern int          CNpointlist_in_bounds();

#endif /* CNintersect_defined */