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/stroke/StrokeLayer.h')
-rw-r--r--source/blender/freestyle/intern/stroke/StrokeLayer.h131
1 files changed, 66 insertions, 65 deletions
diff --git a/source/blender/freestyle/intern/stroke/StrokeLayer.h b/source/blender/freestyle/intern/stroke/StrokeLayer.h
index 1eef44e6c91..ecb98025875 100644
--- a/source/blender/freestyle/intern/stroke/StrokeLayer.h
+++ b/source/blender/freestyle/intern/stroke/StrokeLayer.h
@@ -25,81 +25,82 @@
#include <deque>
#ifdef WITH_CXX_GUARDEDALLOC
-#include "MEM_guardedalloc.h"
+# include "MEM_guardedalloc.h"
#endif
namespace Freestyle {
class Stroke;
class StrokeRenderer;
-class StrokeLayer
-{
-public:
- typedef std::deque<Stroke*> stroke_container;
-
-protected:
- stroke_container _strokes;
-
-public:
- StrokeLayer() {}
-
- StrokeLayer(const stroke_container& iStrokes)
- {
- _strokes = iStrokes;
- }
-
- StrokeLayer(const StrokeLayer& iBrother)
- {
- _strokes = iBrother._strokes;
- }
-
- virtual ~StrokeLayer();
-
- /*! Render method */
- void ScaleThickness(float iFactor);
- void Render(const StrokeRenderer *iRenderer);
- void RenderBasic(const StrokeRenderer *iRenderer);
-
- /*! clears the layer */
- void clear();
-
- /*! accessors */
- inline stroke_container::iterator strokes_begin()
- {
- return _strokes.begin();
- }
-
- inline stroke_container::iterator strokes_end()
- {
- return _strokes.end();
- }
-
- inline int strokes_size() const
- {
- return _strokes.size();
- }
-
- inline bool empty() const
- {
- return _strokes.empty();
- }
-
- /*! modifiers */
- inline void setStrokes(stroke_container& iStrokes)
- {
- _strokes = iStrokes;
- }
-
- inline void AddStroke(Stroke *iStroke)
- {
- _strokes.push_back(iStroke);
- }
+class StrokeLayer {
+ public:
+ typedef std::deque<Stroke *> stroke_container;
+
+ protected:
+ stroke_container _strokes;
+
+ public:
+ StrokeLayer()
+ {
+ }
+
+ StrokeLayer(const stroke_container &iStrokes)
+ {
+ _strokes = iStrokes;
+ }
+
+ StrokeLayer(const StrokeLayer &iBrother)
+ {
+ _strokes = iBrother._strokes;
+ }
+
+ virtual ~StrokeLayer();
+
+ /*! Render method */
+ void ScaleThickness(float iFactor);
+ void Render(const StrokeRenderer *iRenderer);
+ void RenderBasic(const StrokeRenderer *iRenderer);
+
+ /*! clears the layer */
+ void clear();
+
+ /*! accessors */
+ inline stroke_container::iterator strokes_begin()
+ {
+ return _strokes.begin();
+ }
+
+ inline stroke_container::iterator strokes_end()
+ {
+ return _strokes.end();
+ }
+
+ inline int strokes_size() const
+ {
+ return _strokes.size();
+ }
+
+ inline bool empty() const
+ {
+ return _strokes.empty();
+ }
+
+ /*! modifiers */
+ inline void setStrokes(stroke_container &iStrokes)
+ {
+ _strokes = iStrokes;
+ }
+
+ inline void AddStroke(Stroke *iStroke)
+ {
+ _strokes.push_back(iStroke);
+ }
#ifdef WITH_CXX_GUARDEDALLOC
- MEM_CXX_CLASS_ALLOC_FUNCS("Freestyle:StrokeLayer")
+ MEM_CXX_CLASS_ALLOC_FUNCS("Freestyle:StrokeLayer")
#endif
};
} /* namespace Freestyle */
-#endif // __FREESTYLE_STROKE_LAYER_H__
+#endif // __FREESTYLE_STROKE_LAYER_H__