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/scene_graph/DrawingStyle.h')
-rw-r--r--source/blender/freestyle/intern/scene_graph/DrawingStyle.h169
1 files changed, 85 insertions, 84 deletions
diff --git a/source/blender/freestyle/intern/scene_graph/DrawingStyle.h b/source/blender/freestyle/intern/scene_graph/DrawingStyle.h
index 5ad16845327..631f4b99adc 100644
--- a/source/blender/freestyle/intern/scene_graph/DrawingStyle.h
+++ b/source/blender/freestyle/intern/scene_graph/DrawingStyle.h
@@ -23,105 +23,106 @@
*/
#ifdef WITH_CXX_GUARDEDALLOC
-#include "MEM_guardedalloc.h"
+# include "MEM_guardedalloc.h"
#endif
namespace Freestyle {
-class DrawingStyle
-{
-public:
- enum STYLE {
- FILLED,
- LINES,
- POINTS,
- INVISIBLE,
- };
-
- inline DrawingStyle()
- {
- Style = FILLED;
- LineWidth = 2.0f;
- PointSize = 2.0f;
- LightingEnabled = true;
- }
-
- inline explicit DrawingStyle(const DrawingStyle& iBrother);
-
- virtual ~DrawingStyle() {}
-
- /*! operators */
- inline DrawingStyle& operator=(const DrawingStyle& ds);
-
- inline void setStyle(const STYLE iStyle)
- {
- Style = iStyle;
- }
-
- inline void setLineWidth(const float iLineWidth)
- {
- LineWidth = iLineWidth;
- }
-
- inline void setPointSize(const float iPointSize)
- {
- PointSize = iPointSize;
- }
-
- inline void setLightingEnabled(const bool on)
- {
- LightingEnabled = on;
- }
-
- inline STYLE style() const
- {
- return Style;
- }
-
- inline float lineWidth() const
- {
- return LineWidth;
- }
-
- inline float pointSize() const
- {
- return PointSize;
- }
-
- inline bool lightingEnabled() const
- {
- return LightingEnabled;
- }
-
-private:
- STYLE Style;
- float LineWidth;
- float PointSize;
- bool LightingEnabled;
+class DrawingStyle {
+ public:
+ enum STYLE {
+ FILLED,
+ LINES,
+ POINTS,
+ INVISIBLE,
+ };
+
+ inline DrawingStyle()
+ {
+ Style = FILLED;
+ LineWidth = 2.0f;
+ PointSize = 2.0f;
+ LightingEnabled = true;
+ }
+
+ inline explicit DrawingStyle(const DrawingStyle &iBrother);
+
+ virtual ~DrawingStyle()
+ {
+ }
+
+ /*! operators */
+ inline DrawingStyle &operator=(const DrawingStyle &ds);
+
+ inline void setStyle(const STYLE iStyle)
+ {
+ Style = iStyle;
+ }
+
+ inline void setLineWidth(const float iLineWidth)
+ {
+ LineWidth = iLineWidth;
+ }
+
+ inline void setPointSize(const float iPointSize)
+ {
+ PointSize = iPointSize;
+ }
+
+ inline void setLightingEnabled(const bool on)
+ {
+ LightingEnabled = on;
+ }
+
+ inline STYLE style() const
+ {
+ return Style;
+ }
+
+ inline float lineWidth() const
+ {
+ return LineWidth;
+ }
+
+ inline float pointSize() const
+ {
+ return PointSize;
+ }
+
+ inline bool lightingEnabled() const
+ {
+ return LightingEnabled;
+ }
+
+ private:
+ STYLE Style;
+ float LineWidth;
+ float PointSize;
+ bool LightingEnabled;
#ifdef WITH_CXX_GUARDEDALLOC
- MEM_CXX_CLASS_ALLOC_FUNCS("Freestyle:DrawingStyle")
+ MEM_CXX_CLASS_ALLOC_FUNCS("Freestyle:DrawingStyle")
#endif
};
-DrawingStyle::DrawingStyle(const DrawingStyle& iBrother)
+DrawingStyle::DrawingStyle(const DrawingStyle &iBrother)
{
- Style = iBrother.Style;
- LineWidth = iBrother.LineWidth;
- PointSize = iBrother.PointSize;
- LightingEnabled = iBrother.LightingEnabled;
+ Style = iBrother.Style;
+ LineWidth = iBrother.LineWidth;
+ PointSize = iBrother.PointSize;
+ LightingEnabled = iBrother.LightingEnabled;
}
-DrawingStyle& DrawingStyle::operator=(const DrawingStyle& ds)
+DrawingStyle &DrawingStyle::operator=(const DrawingStyle &ds)
{
- Style = ds.Style;
- LineWidth = ds.LineWidth;
- PointSize = ds.PointSize;
- LightingEnabled = ds.LightingEnabled;
+ Style = ds.Style;
+ LineWidth = ds.LineWidth;
+ PointSize = ds.PointSize;
+ LightingEnabled = ds.LightingEnabled;
- return *this;
+ return *this;
}
} /* namespace Freestyle */
-#endif // __FREESTYLE_DRAWING_STYLE_H__
+#endif // __FREESTYLE_DRAWING_STYLE_H__