Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/axis.h')
-rw-r--r--src/math/axis.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/math/axis.h b/src/math/axis.h
index d3a5ec6..f9da159 100644
--- a/src/math/axis.h
+++ b/src/math/axis.h
@@ -91,9 +91,9 @@ private:
/// helper function to conver math::Axis to btMatrix3x3
inline btMatrix3x3 to_btMatrix3x3(const math::Axis &a)
{
- return btMatrix3x3(a[0][0], a[0][1], a[0][2],
- a[1][0], a[1][1], a[1][2],
- a[2][0], a[2][1], a[2][2]);
+ return btMatrix3x3(a[0][0], a[1][0], a[2][0],
+ a[0][1], a[1][1], a[2][1],
+ a[0][2], a[1][2], a[2][2]);
}
/// write an axis to a std::ostream