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>2010-12-08 14:47:35 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-12-08 14:47:35 +0300
commit4bdaedfc4a04c1f6e4818628904cce11cda62258 (patch)
treeb10678778fa3511210d884a79e9f9596fff97fa2 /space_view3d_math_vis
parente4871edb66204081ac5939402bb2ff3f534fe53f (diff)
updates for changes in blenders api
Diffstat (limited to 'space_view3d_math_vis')
-rw-r--r--space_view3d_math_vis/draw.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/space_view3d_math_vis/draw.py b/space_view3d_math_vis/draw.py
index a2bc41c6..a7f25d37 100644
--- a/space_view3d_math_vis/draw.py
+++ b/space_view3d_math_vis/draw.py
@@ -193,7 +193,7 @@ def draw_callback_view(self, context):
glBegin(GL_POINTS)
glColor3f(0.5, 0.5, 1)
for key, vec in data_vector.items():
- glVertex3f(*vec)
+ glVertex3f(*vec.copy().resize3D())
glEnd();
glPointSize(1.0)