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>2012-12-20 17:32:14 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-12-20 17:32:14 +0400
commit6332e745a7e1987a19e463a323858cc0ad3409e7 (patch)
tree57d927427aac8ef3065ff9165d09a2848141d81a /space_view3d_math_vis/utils.py
parent2872d0440fd1fdb4048cfd0a135f4763562cf96e (diff)
update for changes to the rna api
Diffstat (limited to 'space_view3d_math_vis/utils.py')
-rw-r--r--space_view3d_math_vis/utils.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/space_view3d_math_vis/utils.py b/space_view3d_math_vis/utils.py
index a89a9ffb..318beffa 100644
--- a/space_view3d_math_vis/utils.py
+++ b/space_view3d_math_vis/utils.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>
def console_namespace():
import console_python
@@ -25,6 +27,7 @@ def console_namespace():
return console.locals
return {}
+
def console_math_data():
from mathutils import Matrix, Vector, Quaternion, Euler
@@ -66,4 +69,3 @@ def console_math_data():
data_vector_array[key] = var
return data_matrix, data_quat, data_euler, data_vector, data_vector_array
-