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:
authorKent Mein <mein@cs.umn.edu>2002-10-30 00:46:46 +0300
committerKent Mein <mein@cs.umn.edu>2002-10-30 00:46:46 +0300
commit91f956dfe2b03d50007ec57a05cf211f2859e2c3 (patch)
tree3dbdea065f44bf6a0a18f8d2123bf3bacd22f92b
parente03c322a2efb12acf2d4224125532a2b298c1b19 (diff)
removed extra ;
was causing problems with cc on SunOS also took out some blank lines to make the format of the file a little nicer
-rw-r--r--intern/iksolver/intern/TNT/svd.h40
1 files changed, 2 insertions, 38 deletions
diff --git a/intern/iksolver/intern/TNT/svd.h b/intern/iksolver/intern/TNT/svd.h
index 9be2d98bd9f..9028b79130d 100644
--- a/intern/iksolver/intern/TNT/svd.h
+++ b/intern/iksolver/intern/TNT/svd.h
@@ -263,13 +263,10 @@ void SVD(MaTRiX &a, VecToR &w, MaTRiX &v, VecToR &work_space) {
w(k)=x;
}
}
-};
-
-
+}
// A is replaced by the column orthogonal matrix U
-
template <class MaTRiX, class VecToR >
void SVD_a( MaTRiX &a, VecToR &w, MaTRiX &v) {
@@ -468,40 +465,7 @@ void SVD_a( MaTRiX &a, VecToR &w, MaTRiX &v) {
}
}
}
+
}
#endif
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-