Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/physics/intern/eigen_utils.h')
-rw-r--r--source/blender/physics/intern/eigen_utils.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/physics/intern/eigen_utils.h b/source/blender/physics/intern/eigen_utils.h
index 4598d3ad3a7..511e2cea3b1 100644
--- a/source/blender/physics/intern/eigen_utils.h
+++ b/source/blender/physics/intern/eigen_utils.h
@@ -67,7 +67,7 @@ public:
coeffRef(k) = v[k];
}
- Vector3& operator = (const ctype &v)
+ Vector3& operator =(const ctype &v)
{
for (int k = 0; k < 3; ++k)
coeffRef(k) = v[k];
@@ -98,7 +98,7 @@ public:
coeffRef(l, k) = v[k][l];
}
- Matrix3& operator = (const ctype &v)
+ Matrix3& operator =(const ctype &v)
{
for (int k = 0; k < 3; ++k)
for (int l = 0; l < 3; ++l)
@@ -126,18 +126,18 @@ public:
}
template <typename T>
- lVector3f& operator = (T rhs)
+ lVector3f& operator =(T rhs)
{
base_t::operator=(rhs);
return *this;
}
- float* v3(int vertex)
+ float *v3(int vertex)
{
return &coeffRef(3 * vertex);
}
- const float* v3(int vertex) const
+ const float *v3(int vertex) const
{
return &coeffRef(3 * vertex);
}