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-26 20:41:37 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-06-26 20:58:56 +0300
commit532c8ac58384309e77791e32ab78f448ad2a76a6 (patch)
treecef77b98714aaed13ec8317bc9bb763d00aa1a02 /release/scripts/startup/bl_operators/vertexpaint_dirt.py
parentecb56eac57e66c1c925860e05438c9f245bff505 (diff)
Cleanup: pep8 function indentation
Diffstat (limited to 'release/scripts/startup/bl_operators/vertexpaint_dirt.py')
-rw-r--r--release/scripts/startup/bl_operators/vertexpaint_dirt.py52
1 files changed, 26 insertions, 26 deletions
diff --git a/release/scripts/startup/bl_operators/vertexpaint_dirt.py b/release/scripts/startup/bl_operators/vertexpaint_dirt.py
index f12b76a76ba..1173e0047bb 100644
--- a/release/scripts/startup/bl_operators/vertexpaint_dirt.py
+++ b/release/scripts/startup/bl_operators/vertexpaint_dirt.py
@@ -139,36 +139,36 @@ class VertexPaintDirt(Operator):
bl_options = {'REGISTER', 'UNDO'}
blur_strength = FloatProperty(
- name="Blur Strength",
- description="Blur strength per iteration",
- min=0.01, max=1.0,
- default=1.0,
- )
+ name="Blur Strength",
+ description="Blur strength per iteration",
+ min=0.01, max=1.0,
+ default=1.0,
+ )
blur_iterations = IntProperty(
- name="Blur Iterations",
- description="Number of times to blur the colors (higher blurs more)",
- min=0, max=40,
- default=1,
- )
+ name="Blur Iterations",
+ description="Number of times to blur the colors (higher blurs more)",
+ min=0, max=40,
+ default=1,
+ )
clean_angle = FloatProperty(
- name="Highlight Angle",
- description="Less than 90 limits the angle used in the tonal range",
- min=0.0, max=pi,
- default=pi,
- unit="ROTATION",
- )
+ name="Highlight Angle",
+ description="Less than 90 limits the angle used in the tonal range",
+ min=0.0, max=pi,
+ default=pi,
+ unit="ROTATION",
+ )
dirt_angle = FloatProperty(
- name="Dirt Angle",
- description="Less than 90 limits the angle used in the tonal range",
- min=0.0, max=pi,
- default=0.0,
- unit="ROTATION",
- )
+ name="Dirt Angle",
+ description="Less than 90 limits the angle used in the tonal range",
+ min=0.0, max=pi,
+ default=0.0,
+ unit="ROTATION",
+ )
dirt_only = BoolProperty(
- name="Dirt Only",
- description="Don't calculate cleans for convex areas",
- default=False,
- )
+ name="Dirt Only",
+ description="Don't calculate cleans for convex areas",
+ default=False,
+ )
@classmethod
def poll(cls, context):