Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2015-04-10 04:43:35 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-04-10 04:43:35 +0300
commit73bf474a6df0d2ad6524da9449b01a02620b669f (patch)
tree47e51aed6d0158e032ab9b1321e6f80d554914ac /render_povray/__init__.py
parenteb8c24066d448533e243106d6c5fa12d18f3e412 (diff)
Cleanup: imports (formatting)
Diffstat (limited to 'render_povray/__init__.py')
-rw-r--r--render_povray/__init__.py41
1 files changed, 23 insertions, 18 deletions
diff --git a/render_povray/__init__.py b/render_povray/__init__.py
index 716ce0cd..bd68f5e9 100644
--- a/render_povray/__init__.py
+++ b/render_povray/__init__.py
@@ -39,21 +39,25 @@ if "bpy" in locals():
else:
import bpy
- from bpy.types import (AddonPreferences,
- PropertyGroup,
- Operator,
- )
- from bpy.props import (StringProperty,
- BoolProperty,
- IntProperty,
- FloatProperty,
- FloatVectorProperty,
- EnumProperty,
- PointerProperty,
- )
- from . import ui
- from . import render
- from . import update_files
+ from bpy.types import (
+ AddonPreferences,
+ PropertyGroup,
+ Operator,
+ )
+ from bpy.props import (
+ StringProperty,
+ BoolProperty,
+ IntProperty,
+ FloatProperty,
+ FloatVectorProperty,
+ EnumProperty,
+ PointerProperty,
+ )
+ from . import (
+ ui,
+ render,
+ update_files,
+ )
def string_strip_hyphen(name):
return name.replace("-", "")
@@ -161,9 +165,10 @@ class RenderPovSettingsScene(PropertyGroup):
("2", "stochastic AA", "Type 3 Sampling in UberPOV")),
default="1")
antialias_confidence = FloatProperty(
- name="Antialias Confidence", description="how surely the computed color "
- "of a given pixel is indeed"
- "within the threshold error margin.",
+ name="Antialias Confidence",
+ description="how surely the computed color "
+ "of a given pixel is indeed"
+ "within the threshold error margin",
min=0.0001, max=1.0000, default=0.9900, precision=4)
antialias_depth = IntProperty(
name="Antialias Depth", description="Depth of pixel for sampling",