aboutsummaryrefslogtreecommitdiffstats
path: root/yage/math/matrix.h
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-12-17 09:23:05 +0000
committerYann Herklotz <ymherklotz@gmail.com>2017-12-17 09:23:05 +0000
commit9d6ca56d5ac15634958f773e991d41a977f909bf (patch)
treecc10786c091a7f185feae2c3f536981f222e9117 /yage/math/matrix.h
parente6215e764bc149497ab5772d9ea136809d898993 (diff)
downloadYAGE-9d6ca56d5ac15634958f773e991d41a977f909bf.tar.gz
YAGE-9d6ca56d5ac15634958f773e991d41a977f909bf.zip
Making simplegame and travis
Diffstat (limited to 'yage/math/matrix.h')
-rw-r--r--yage/math/matrix.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/yage/math/matrix.h b/yage/math/matrix.h
index e7e82651..90a763cf 100644
--- a/yage/math/matrix.h
+++ b/yage/math/matrix.h
@@ -388,7 +388,7 @@ public:
Vector4<Type>(Type x_in, Type y_in, Type z_in, Type w_in)
: Vector<4, Type>({x_in, y_in, z_in, w_in}), x(this->data_[0]),
- y(this->data_[1]), z(this->data_[2]), w(this->data[3])
+ y(this->data_[1]), z(this->data_[2]), w(this->data_[3])
{
}
};