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/compositor/operations/COM_SetVectorOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_SetVectorOperation.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/compositor/operations/COM_SetVectorOperation.h b/source/blender/compositor/operations/COM_SetVectorOperation.h
index b01f2f7a6b5..79b55bb7d91 100644
--- a/source/blender/compositor/operations/COM_SetVectorOperation.h
+++ b/source/blender/compositor/operations/COM_SetVectorOperation.h
@@ -41,7 +41,7 @@ public:
* Default constructor
*/
SetVectorOperation();
-
+
const float getX() { return this->m_x; }
void setX(float value) { this->m_x = value; }
const float getY() { return this->m_y; }
@@ -50,7 +50,7 @@ public:
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
*/