improve whitespaces

This commit is contained in:
wmayer
2017-02-18 09:44:58 +01:00
parent 7e42975556
commit 67a0bd4750
4 changed files with 20 additions and 17 deletions

View File

@@ -538,8 +538,8 @@ struct Vertex2d_EqualTo : public std::binary_function<const Base::Vector3f&, co
{
bool operator()(const Base::Vector3f& p, const Base::Vector3f& q) const
{
if (fabs(p.x - q.x) < MeshDefinitions::_fMinPointDistanceD1
&& fabs(p.y - q.y) < MeshDefinitions::_fMinPointDistanceD1)
if (fabs(p.x - q.x) < MeshDefinitions::_fMinPointDistanceD1 &&
fabs(p.y - q.y) < MeshDefinitions::_fMinPointDistanceD1)
return true;
return false;