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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/freestyle/intern/view_map/OccluderSource.h')
-rw-r--r--source/blender/freestyle/intern/view_map/OccluderSource.h53
1 files changed, 26 insertions, 27 deletions
diff --git a/source/blender/freestyle/intern/view_map/OccluderSource.h b/source/blender/freestyle/intern/view_map/OccluderSource.h
index fd7d9f38a0d..07df3b95347 100644
--- a/source/blender/freestyle/intern/view_map/OccluderSource.h
+++ b/source/blender/freestyle/intern/view_map/OccluderSource.h
@@ -27,49 +27,48 @@
#include "../winged_edge/WEdge.h"
#ifdef WITH_CXX_GUARDEDALLOC
-#include "MEM_guardedalloc.h"
+# include "MEM_guardedalloc.h"
#endif
namespace Freestyle {
-class OccluderSource
-{
- // Disallow copying and assignment
- OccluderSource(const OccluderSource& other);
- OccluderSource& operator=(const OccluderSource& other);
+class OccluderSource {
+ // Disallow copying and assignment
+ OccluderSource(const OccluderSource &other);
+ OccluderSource &operator=(const OccluderSource &other);
-public:
- OccluderSource(const GridHelpers::Transform& transform, WingedEdge& we);
- virtual ~OccluderSource();
+ public:
+ OccluderSource(const GridHelpers::Transform &transform, WingedEdge &we);
+ virtual ~OccluderSource();
- void begin();
- virtual bool next();
- bool isValid();
+ void begin();
+ virtual bool next();
+ bool isValid();
- WFace *getWFace();
- Polygon3r getCameraSpacePolygon();
- Polygon3r& getGridSpacePolygon();
+ WFace *getWFace();
+ Polygon3r getCameraSpacePolygon();
+ Polygon3r &getGridSpacePolygon();
- virtual void getOccluderProscenium(real proscenium[4]);
- virtual real averageOccluderArea();
+ virtual void getOccluderProscenium(real proscenium[4]);
+ virtual real averageOccluderArea();
-protected:
- WingedEdge& wingedEdge;
- vector<WShape*>::const_iterator currentShape, shapesEnd;
- vector<WFace*>::const_iterator currentFace, facesEnd;
+ protected:
+ WingedEdge &wingedEdge;
+ vector<WShape *>::const_iterator currentShape, shapesEnd;
+ vector<WFace *>::const_iterator currentFace, facesEnd;
- bool valid;
+ bool valid;
- Polygon3r cachedPolygon;
- const GridHelpers::Transform& transform;
+ Polygon3r cachedPolygon;
+ const GridHelpers::Transform &transform;
- void buildCachedPolygon();
+ void buildCachedPolygon();
#ifdef WITH_CXX_GUARDEDALLOC
- MEM_CXX_CLASS_ALLOC_FUNCS("Freestyle:OccluderSource")
+ MEM_CXX_CLASS_ALLOC_FUNCS("Freestyle:OccluderSource")
#endif
};
} /* namespace Freestyle */
-#endif // __FREESTYLE_OCCLUDER_SOURCE_H__
+#endif // __FREESTYLE_OCCLUDER_SOURCE_H__