From: dooglus Date: Fri, 28 Sep 2007 02:07:39 +0000 (+0000) Subject: Fix the indentation. X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=fabc591598bbf0618b740627faaab058efd5a29e;p=synfig.git Fix the indentation. git-svn-id: http://svn.voria.com/code@786 1f10aa63-cdf2-0310-b900-c93c546f37ac --- diff --git a/ETL/trunk/ETL/_angle.h b/ETL/trunk/ETL/_angle.h index 20f8261..3080366 100644 --- a/ETL/trunk/ETL/_angle.h +++ b/ETL/trunk/ETL/_angle.h @@ -70,41 +70,41 @@ public: const angle & operator+=(const angle &rhs) - { v+=rhs.v; return *this; } + { v+=rhs.v; return *this; } const angle & operator-=(const angle &rhs) - { v-=rhs.v; return *this; } + { v-=rhs.v; return *this; } const angle & operator*=(const unit &rhs) - { v*=rhs; return *this; } + { v*=rhs; return *this; } const angle & operator/=(const unit &rhs) - { v/=rhs; return *this; } + { v/=rhs; return *this; } //! Angle Addition Operator angle operator+(const angle &rhs)const - { return angle(*this)+=rhs; } + { return angle(*this)+=rhs; } //! Angle Subtraction Operator /*! \sa angle dist(const angle &) */ angle operator-(const angle &rhs)const - { return angle(*this)-=rhs; } + { return angle(*this)-=rhs; } //! Angle Scalar Multiplication Operator /*! This operator will multiply the given angle by the given scalar value. */ angle operator*(const unit &rhs)const - { return angle(*this)*=rhs; } + { return angle(*this)*=rhs; } angle operator/(const unit &rhs)const - { return angle(*this)/=rhs; } + { return angle(*this)/=rhs; } //! Angle Negation angle @@ -132,14 +132,14 @@ public: right-hand side is clockwise */ bool operator<(const angle &rhs)const - { return dist(rhs).v<(value_type)0.0; } + { return dist(rhs).v<(value_type)0.0; } /*! Returns true if the shortest angle between the left-hand and right-hand side is counter-clockwise */ bool operator>(const angle &rhs)const - { return dist(rhs).v>(value_type)0.0; } + { return dist(rhs).v>(value_type)0.0; } /*! Returns true if the shortest angle between the left-hand and @@ -148,7 +148,7 @@ public: point on the unit circle. */ bool operator<=(const angle &rhs)const - { return dist(rhs).v<=(value_type)0.0; } + { return dist(rhs).v<=(value_type)0.0; } /*! Returns true if the shortest angle between the left-hand and @@ -157,21 +157,21 @@ public: point on the unit circle. */ bool operator>=(const angle &rhs)const - { return dist(rhs).v>=(value_type)0.0; } + { return dist(rhs).v>=(value_type)0.0; } /*! Returns true if the angles are refer to the same point on the unit circle. */ bool operator==(const angle &rhs)const - { return std::abs(dist(rhs).v)epsilon; } + { return std::abs(dist(rhs).v)>epsilon; } //! Angle Difference Function /*! This function will return the @@ -182,11 +182,8 @@ public: dist(const angle &rhs)const { angle ret; - ret.v=v-rhs.v; - ret.v-=rot_floor(ret.v+PI); - return ret; } @@ -432,7 +429,6 @@ struct distance_func : public std::binary_function