ALL: Fixed compiler warnings

This commit is contained in:
Pawel Kolodziejski
2016-07-23 19:08:22 +02:00
parent c00c43dfcd
commit 82bc17b63a
4 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -29,9 +29,9 @@ namespace Math {
Ray::Ray() {
}
Ray::Ray(const Vector3d &origin, const Vector3d &direction) :
Ray::Ray(const Vector3d &origin, const Vector3d &dir) :
_origin(origin),
_direction(direction) {
_direction(dir) {
}
void Ray::transform(const Matrix4 &matrix) {