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:
authorCampbell Barton <ideasman42@gmail.com>2012-06-26 05:22:05 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-06-26 05:22:05 +0400
commit6a1d82490e49d1f5d73b5082516b087d44010fb8 (patch)
tree0650cce3c1d47db6c5de1f4f2ba05b619c412f09 /source/blender/compositor/operations/COM_SetVectorOperation.h
parent7a0ab62d3f65f3b28da2a6ba9916c21132f8ea0d (diff)
use m_ prefix for compositor class members (all compositor operations).
Diffstat (limited to 'source/blender/compositor/operations/COM_SetVectorOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_SetVectorOperation.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/source/blender/compositor/operations/COM_SetVectorOperation.h b/source/blender/compositor/operations/COM_SetVectorOperation.h
index 49088027762..dc2a05ceff4 100644
--- a/source/blender/compositor/operations/COM_SetVectorOperation.h
+++ b/source/blender/compositor/operations/COM_SetVectorOperation.h
@@ -31,10 +31,10 @@
*/
class SetVectorOperation : public NodeOperation {
private:
- float x;
- float y;
- float z;
- float w;
+ float m_x;
+ float m_y;
+ float m_z;
+ float m_w;
public:
/**
@@ -42,14 +42,14 @@ public:
*/
SetVectorOperation();
- const float getX() { return this->x; }
- void setX(float value) { this->x = value; }
- const float getY() { return this->y; }
- void setY(float value) { this->y = value; }
- const float getZ() { return this->z; }
- void setZ(float value) { this->z = value; }
- const float getW() { return this->w; }
- void setW(float value) { this->w = value; }
+ const float getX() { return this->m_x; }
+ void setX(float value) { this->m_x = value; }
+ const float getY() { return this->m_y; }
+ void setY(float value) { this->m_y = value; }
+ const float getZ() { return this->m_z; }
+ void setZ(float value) { this->m_z = value; }
+ const float getW() { return this->m_w; }
+ void setW(float value) { this->m_w = value; }
/**
* the inner loop of this program