Revision 2176,
595 bytes
checked in by mattausch, 18 years ago
(diff) |
removed using namespace std from .h
|
-
Property svn:executable set to
*
|
Line | |
---|
1 | #ifndef _CombinedPreprocessor_H__
|
---|
2 | #define _CombinedPreprocessor_H__
|
---|
3 |
|
---|
4 | #include "Preprocessor.h"
|
---|
5 | #include "VssRay.h"
|
---|
6 |
|
---|
7 | namespace GtpVisibilityPreprocessor {
|
---|
8 |
|
---|
9 | class Exporter;
|
---|
10 | class MixtureDistribution;
|
---|
11 |
|
---|
12 | /** Sampling based visibility preprocessing. The implementation is based on heuristical
|
---|
13 | sampling of view space
|
---|
14 | */
|
---|
15 | class CombinedPreprocessor : public Preprocessor {
|
---|
16 | public:
|
---|
17 |
|
---|
18 | CombinedPreprocessor();
|
---|
19 | virtual ~CombinedPreprocessor() {}
|
---|
20 |
|
---|
21 | virtual bool ComputeVisibility();
|
---|
22 |
|
---|
23 | protected:
|
---|
24 | MixtureDistribution *mMixtureDistribution;
|
---|
25 |
|
---|
26 | };
|
---|
27 |
|
---|
28 | }
|
---|
29 |
|
---|
30 | #endif
|
---|
Note: See
TracBrowser
for help on using the repository browser.