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:
authorMartin Poirier <theeth@yahoo.com>2008-11-18 01:19:05 +0300
committerMartin Poirier <theeth@yahoo.com>2008-11-18 01:19:05 +0300
commitc08d374df2422cc7a291c37735a0d0a5c45a63b4 (patch)
treee79884d6d4b8c8f81f90b7fb76227939fa7613e9 /source/blender/blenlib/intern/arithb.c
parent2d0a005aaa6f14bc80a6c9a0c34f853920d1bac8 (diff)
parent826c6d935d0a47289369b8c76ceb554d5def189a (diff)
merging trunk 17457:17485
Diffstat (limited to 'source/blender/blenlib/intern/arithb.c')
-rw-r--r--source/blender/blenlib/intern/arithb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenlib/intern/arithb.c b/source/blender/blenlib/intern/arithb.c
index 0db87a819bd..783acb9cc97 100644
--- a/source/blender/blenlib/intern/arithb.c
+++ b/source/blender/blenlib/intern/arithb.c
@@ -1351,8 +1351,8 @@ void Mat4ToQuat( float m[][4], float *q)
void QuatOne(float *q)
{
- q[0]= q[2]= q[3]= 0.0;
- q[1]= 1.0;
+ q[0]= 1.0;
+ q[1]= q[2]= q[3]= 0.0;
}
void NormalQuat(float *q)