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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2009-11-10 23:40:18 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2009-11-10 23:40:18 +0300
commit4617bb68ba4b1c5ab459673fffd98bf7203bb4f2 (patch)
treee709868cb806c726bbd1f8fc8c78aace9ab9c1a3 /source/blender/editors
parent84e3b2d72640d68c86e069e1caca25deea53a28b (diff)
Math Lib
* Pre-conversion commit removing old arithb.c code, this will not compile, next commit fixes that.
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/space_view3d/view3d_edit.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/editors/space_view3d/view3d_edit.c b/source/blender/editors/space_view3d/view3d_edit.c
index 1cbb7d0ab56..49f2ece0bc4 100644
--- a/source/blender/editors/space_view3d/view3d_edit.c
+++ b/source/blender/editors/space_view3d/view3d_edit.c
@@ -1881,8 +1881,7 @@ static int view3d_clipping_exec(bContext *C, wmOperator *op)
/* then plane equations */
for(val=0; val<4; val++) {
- CalcNormFloat(rv3d->clipbb->vec[val], rv3d->clipbb->vec[val==3?0:val+1], rv3d->clipbb->vec[val+4],
- rv3d->clip[val]);
+ CalcNormFloat(rv3d->clipbb->vec[val], rv3d->clipbb->vec[val==3?0:val+1], rv3d->clipbb->vec[val+4], rv3d->clip[val]);
rv3d->clip[val][3]= - rv3d->clip[val][0]*rv3d->clipbb->vec[val][0]
- rv3d->clip[val][1]*rv3d->clipbb->vec[val][1]