source: GTP/trunk/Lib/Vis/Preprocessing/src/IntelRayCaster.h @ 1990

Revision 1990, 1.3 KB checked in by mattausch, 17 years ago (diff)
Line 
1#ifndef _IntelRayCaster_H__
2#define _IntelRayCaster_H__
3
4#include "RayCaster.h"
5#include <vector>
6
7
8namespace GtpVisibilityPreprocessor {
9
10
11class Intersectable;
12class VssRay;
13class KdTree;
14class Ray;
15class SimpleRayContainer;
16class AxisAlignedBox3;
17class Vector3;
18struct VssRayContainer;
19class Preprocessor;
20struct SimpleRay;
21
22
23/** This class provides an interface for ray casting.
24*/
25class IntelRayCaster: public RayCaster
26{
27public:
28        /** Default constructor initialising e.g., KD tree and BSP tree.
29        */
30        IntelRayCaster(const Preprocessor &preprocessor,
31                                   const string externKdTree);
32
33        virtual ~IntelRayCaster();
34
35        int Type() const
36        {
37                return INTEL_RAYCASTER;
38        }
39
40        virtual int CastRay(const SimpleRay &simpleRay,
41                                                VssRayContainer &vssRays,
42                                                const AxisAlignedBox3 &box,
43                                                const bool castDoubleRay,
44                                                const bool pruneInvalidRays = true,
45                                                const bool keepOrigin = false);
46
47        virtual void CastRays16(
48                                                        SimpleRayContainer &rays,
49                                                        VssRayContainer &vssRays,
50                                                        const AxisAlignedBox3 &sbox,
51                                                        const bool castDoubleRay,
52                                                        const bool pruneInvalidRays = true,
53                                                        const bool keepOrigin = false);
54
55protected:
56
57        bool InitRayCast(const string externKdTree);
58};
59
60
61}
62
63#endif
Note: See TracBrowser for help on using the repository browser.