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:
authorJoshua Leung <aligorith@gmail.com>2010-03-01 12:42:39 +0300
committerJoshua Leung <aligorith@gmail.com>2010-03-01 12:42:39 +0300
commitb55774aebefa3e053986110e3e04a8531c6d7d47 (patch)
tree2f774a8bad1b445d6a28d0b44b7c41e732c6a94c /source/blender/editors
parent81ab852ba9ac379bbed64eddcf7b7ea867455892 (diff)
Missed a spot when renaming the API functions for adding Keying Set paths
Also some indention/whitespace tweaks
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/space_view3d/drawobject.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/space_view3d/drawobject.c b/source/blender/editors/space_view3d/drawobject.c
index 17ab6a3f965..697fe478602 100644
--- a/source/blender/editors/space_view3d/drawobject.c
+++ b/source/blender/editors/space_view3d/drawobject.c
@@ -351,7 +351,7 @@ void drawaxes(float size, int flag, char drawtype)
float v2[3]= {0.0, 0.0, 0.0};
glBegin(GL_LINES);
-
+
v1[axis]= size;
v2[axis]= -size;
glVertex3fv(v1);
@@ -417,7 +417,7 @@ void drawaxes(float size, int flag, char drawtype)
int arrow_axis= (axis==0)?1:0;
glBegin(GL_LINES);
-
+
v2[axis]= size;
glVertex3fv(v1);
glVertex3fv(v2);
@@ -430,7 +430,7 @@ void drawaxes(float size, int flag, char drawtype)
v1[arrow_axis]= size*0.125;
glVertex3fv(v1);
glVertex3fv(v2);
-
+
glEnd();
v2[axis]+= size*0.125;