Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Pow23GridDensityProvider.h « view_map « intern « freestyle « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c698400a8336ce94ff05a9e4a7f9ad3e4c1a6888 (plain)
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
48
49
/* SPDX-License-Identifier: GPL-2.0-or-later */

#pragma once

/** \file
 * \ingroup freestyle
 * \brief Class to define a cell grid surrounding the projected image of a scene
 */

#include "GridDensityProvider.h"

namespace Freestyle {

class Pow23GridDensityProvider : public GridDensityProvider {
  // Disallow copying and assignment
  Pow23GridDensityProvider(const Pow23GridDensityProvider &other);
  Pow23GridDensityProvider &operator=(const Pow23GridDensityProvider &other);

 public:
  Pow23GridDensityProvider(OccluderSource &source, const real proscenium[4], unsigned numFaces);
  Pow23GridDensityProvider(OccluderSource &source,
                           const BBox<Vec3r> &bbox,
                           const GridHelpers::Transform &transform,
                           unsigned numFaces);
  Pow23GridDensityProvider(OccluderSource &source, unsigned numFaces);

 protected:
  unsigned numFaces;

 private:
  void initialize(const real proscenium[4]);
};

class Pow23GridDensityProviderFactory : public GridDensityProviderFactory {
 public:
  Pow23GridDensityProviderFactory(unsigned numFaces);

  AutoPtr<GridDensityProvider> newGridDensityProvider(OccluderSource &source,
                                                      const real proscenium[4]);
  AutoPtr<GridDensityProvider> newGridDensityProvider(OccluderSource &source,
                                                      const BBox<Vec3r> &bbox,
                                                      const GridHelpers::Transform &transform);
  AutoPtr<GridDensityProvider> newGridDensityProvider(OccluderSource &source);

 protected:
  unsigned numFaces;
};

} /* namespace Freestyle */