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>2018-06-17 18:05:29 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-06-17 18:05:29 +0300
commita262ea8c47f8106f66e16935c556f383ef306861 (patch)
treef37e53c16ba423c478b9522244183367c701b3b0 /source/blender/compositor/operations/COM_BokehImageOperation.h
parent410880552bfaf32f91eaad56bdf2c93c67cbd5c8 (diff)
Cleanup: trailing space for compositor
Diffstat (limited to 'source/blender/compositor/operations/COM_BokehImageOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_BokehImageOperation.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/source/blender/compositor/operations/COM_BokehImageOperation.h b/source/blender/compositor/operations/COM_BokehImageOperation.h
index a2dd3b6ddb7..6f2001566ea 100644
--- a/source/blender/compositor/operations/COM_BokehImageOperation.h
+++ b/source/blender/compositor/operations/COM_BokehImageOperation.h
@@ -61,27 +61,27 @@ private:
* @brief precalced center of the image
*/
float m_center[2];
-
+
/**
* @brief 1.0-rounding
*/
float m_inverseRounding;
-
+
/**
* @brief distance of a full circle lens
*/
float m_circularDistance;
-
+
/**
* @brief radius when the first flap starts
*/
float m_flapRad;
-
+
/**
* @brief radians of a single flap
*/
float m_flapRadAdd;
-
+
/**
* @brief should the m_data field by deleted when this operation is finished
*/
@@ -95,7 +95,7 @@ private:
* @param distance the lens distance is used to simulate lens shifts
*/
void detemineStartPointOfFlap(float r[2], int flapNumber, float distance);
-
+
/**
* @brief Determine if a coordinate is inside the bokeh image
*
@@ -112,17 +112,17 @@ public:
* @brief the inner loop of this program
*/
void executePixelSampled(float output[4], float x, float y, PixelSampler sampler);
-
+
/**
* @brief Initialize the execution
*/
void initExecution();
-
+
/**
* @brief Deinitialize the execution
*/
void deinitExecution();
-
+
/**
* @brief determine the resolution of this operation. currently fixed at [COM_BLUR_BOKEH_PIXELS, COM_BLUR_BOKEH_PIXELS]
* @param resolution
@@ -135,7 +135,7 @@ public:
* @param data
*/
void setData(NodeBokehImage *data) { this->m_data = data; }
-
+
/**
* @brief deleteDataOnFinish
*