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>2011-04-21 11:06:48 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-04-21 11:06:48 +0400
commit1a3307aadf2a13ee072d0f0f8bb9401fbca2d769 (patch)
treecfcf447f8879b6711a55c828dd2152da9e804aca /space_view3d_math_vis
parentc235dfde7ae44038b72cec2b2186a7a2b6db7f82 (diff)
description for demo mode.
Diffstat (limited to 'space_view3d_math_vis')
-rw-r--r--space_view3d_math_vis/__init__.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/space_view3d_math_vis/__init__.py b/space_view3d_math_vis/__init__.py
index ecc8d6d6..b1b9b3bd 100644
--- a/space_view3d_math_vis/__init__.py
+++ b/space_view3d_math_vis/__init__.py
@@ -1,4 +1,4 @@
-#====================== BEGIN GPL LICENSE BLOCK ======================
+# ##### BEGIN GPL LICENSE BLOCK #####
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
@@ -14,7 +14,9 @@
# along with this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
-#======================= END GPL LICENSE BLOCK ========================
+# ##### END GPL LICENSE BLOCK #####
+
+# <pep8 compliant>
bl_info = {
"name": "Math Vis (Console)",
@@ -50,7 +52,7 @@ class VIEW3D_PT_math_vis(bpy.types.Panel):
layout = self.layout
view = context.space_data
- col = layout.column(align=True)
+ col = layout.column(align=True)
callbacks = draw.callbacks
ok = False
@@ -62,7 +64,6 @@ class VIEW3D_PT_math_vis(bpy.types.Panel):
col.operator("view3d.math_vis_toggle", emboss=False, icon='CHECKBOX_HLT' if ok else 'CHECKBOX_DEHLT')
-
class SetupMathView(bpy.types.Operator):
'''Draw a line with the mouse'''
bl_idname = "view3d.math_vis_toggle"
@@ -97,6 +98,7 @@ def register():
import console_python
console_python.execute.hooks.append((console_hook, ()))
+
def unregister():
bpy.utils.unregister_module(__name__)