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/freestyle/intern/geometry/VecMat.h')
-rw-r--r--source/blender/freestyle/intern/geometry/VecMat.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/source/blender/freestyle/intern/geometry/VecMat.h b/source/blender/freestyle/intern/geometry/VecMat.h
index 5b64a6e4502..34e10d31c4f 100644
--- a/source/blender/freestyle/intern/geometry/VecMat.h
+++ b/source/blender/freestyle/intern/geometry/VecMat.h
@@ -153,21 +153,21 @@ public:
return res;
}
- inline Vec<T, N> operator-(const Vec<T,N>& v) const
+ inline Vec<T, N> operator-(const Vec<T, N>& v) const
{
Vec<T, N> res(*this);
res -= v;
return res;
}
- inline Vec<T, N> operator*(const typename Vec<T,N>::value_type r) const
+ inline Vec<T, N> operator*(const typename Vec<T, N>::value_type r) const
{
Vec<T, N> res(*this);
res *= r;
return res;
}
- inline Vec<T, N> operator/(const typename Vec<T,N>::value_type r) const
+ inline Vec<T, N> operator/(const typename Vec<T, N>::value_type r) const
{
Vec<T, N> res(*this);
if (r)
@@ -435,7 +435,8 @@ public:
return this->_coord[1];
}
- inline value_type& sy(){
+ inline value_type& sy()
+ {
return this->_coord[1];
}