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:
authorMonique Dewanchand <m.dewanchand@atmind.nl>2013-02-06 12:40:12 +0400
committerMonique Dewanchand <m.dewanchand@atmind.nl>2013-02-06 12:40:12 +0400
commit23bf087338204b45e5b72c1269bd013a88cf3f9d (patch)
treeb90552717bd7c3af01697d33de29b3872d6d537a /source/blender/compositor/operations/COM_TranslateOperation.h
parenta78cf854b4c811d5df24d10cf3b9a0d9d6679ca0 (diff)
Code clean up translate node
added constants. moved the code to a separate class. so it can be reused for other nodes
Diffstat (limited to 'source/blender/compositor/operations/COM_TranslateOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_TranslateOperation.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/source/blender/compositor/operations/COM_TranslateOperation.h b/source/blender/compositor/operations/COM_TranslateOperation.h
index accca527400..d53c3e464fc 100644
--- a/source/blender/compositor/operations/COM_TranslateOperation.h
+++ b/source/blender/compositor/operations/COM_TranslateOperation.h
@@ -37,7 +37,6 @@ private:
float m_relativeOffsetY;
float m_factorX;
float m_factorY;
- char m_wrappingType;
public:
TranslateOperation();
bool determineDependingAreaOfInterest(rcti *input, ReadBufferOperation *readOperation, rcti *output);
@@ -60,10 +59,6 @@ public:
}
}
- void setWrapping(char wrapping_type);
- float getWrappedOriginalXPos(float x);
- float getWrappedOriginalYPos(float y);
-
void setFactorXY(float factorX, float factorY);
};