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_RotateOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_RotateOperation.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/compositor/operations/COM_RotateOperation.h b/source/blender/compositor/operations/COM_RotateOperation.h
index 9965d1021da..6afed39908b 100644
--- a/source/blender/compositor/operations/COM_RotateOperation.h
+++ b/source/blender/compositor/operations/COM_RotateOperation.h
@@ -34,6 +34,7 @@ private:
float cosine;
float sine;
bool doDegree2RadConversion;
+ bool isDegreeSet;
public:
RotateOperation();
bool determineDependingAreaOfInterest(rcti *input, ReadBufferOperation *readOperation, rcti *output);
@@ -41,6 +42,8 @@ public:
void initExecution();
void deinitExecution();
void setDoDegree2RadConversion(bool abool) {this->doDegree2RadConversion = abool;}
+
+ void ensureDegree();
};
#endif