blob: e888f8ca1e12ebac309809144af64777ae8744fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
* PARSEC HEADER: xac_cull.h
*/
#ifndef _XAC_CULL_H_
#define _XAC_CULL_H_
// xac_cull.c implements the following functions
// ---------------------------------------------
// void CULL_ReAcPointBox3( ReAcPointBox3 *reac, CullBox3 *cullbox, Plane3 *plane );
// void CULL_ReAcIndexBox3( ReAcIndexBox3 *reac, Plane3 *plane );
// void CULL_MakeVolumeCullVolume( Plane3 *volume, CullPlane3 *cullvolume, dword cullmask );
// int CULL_BoxAgainstCullVolume( CullBox3 *cullbox, CullPlane3 *volume, dword *cullmask );
// int CULL_BoxAgainstVolume( CullBox3 *cullbox, Plane3 *volume, dword *cullmask );
// int CULL_SphereAgainstVolume( Sphere3 *sphere, Plane3 *volume, dword *cullmask );
#endif
|