summaryrefslogtreecommitdiffhomepage
path: root/Stars45/Geometry.h
diff options
context:
space:
mode:
Diffstat (limited to 'Stars45/Geometry.h')
-rw-r--r--Stars45/Geometry.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Stars45/Geometry.h b/Stars45/Geometry.h
index f8ddcdf..68df836 100644
--- a/Stars45/Geometry.h
+++ b/Stars45/Geometry.h
@@ -265,8 +265,8 @@ struct Quaternion
static const char* TYPENAME() { return "Quaternion"; }
Quaternion() : x(0), y(0), z(0), w(0) { }
- Quaternion(double ix,
- double iy,
+ Quaternion(double ix,
+ double iy,
double iz,
double iw) : x(ix), y(iy), z(iz), w(iw) { }
Quaternion(const Quaternion& q) : x(q.x), y(q.y), z(q.z), w(q.w) { }