From 9eacac84af91befed5e6873635d9e58c51e7c5b6 Mon Sep 17 00:00:00 2001 From: "chappuis.daniel" Date: Thu, 2 Jul 2009 20:44:43 +0000 Subject: [PATCH] git-svn-id: https://reactphysics3d.googlecode.com/svn/trunk@153 92aac97c-a6ce-11dd-a772-7fcde58d38e6 --- sources/reactphysics3d/mathematics/Quaternion.cpp | 2 +- sources/reactphysics3d/mathematics/Quaternion.h | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/sources/reactphysics3d/mathematics/Quaternion.cpp b/sources/reactphysics3d/mathematics/Quaternion.cpp index da57d894..54238f70 100755 --- a/sources/reactphysics3d/mathematics/Quaternion.cpp +++ b/sources/reactphysics3d/mathematics/Quaternion.cpp @@ -21,7 +21,7 @@ #include "mathematics.h" #include -// Namespaces +// Namespace using namespace reactphysics3d; // Constructor of the class diff --git a/sources/reactphysics3d/mathematics/Quaternion.h b/sources/reactphysics3d/mathematics/Quaternion.h index 5837a301..c4a45917 100644 --- a/sources/reactphysics3d/mathematics/Quaternion.h +++ b/sources/reactphysics3d/mathematics/Quaternion.h @@ -34,8 +34,7 @@ namespace reactphysics3d { q = (x*i, y*j, z*k, w) to represent a quaternion. ------------------------------------------------------------------- */ -class Quaternion -{ +class Quaternion { private : double x; // Component x of the quaternion double y; // Component y of the quaternion