Cleanup: indentation of public/protected/private keywords

This commit is contained in:
Twan van Laarhoven
2020-05-12 21:57:37 +02:00
parent 86aec577a2
commit 0c3712b61a
167 changed files with 751 additions and 752 deletions
+2 -2
View File
@@ -25,7 +25,7 @@ inline int to_int(double d) {
/// A simple 2d vector class
class Vector2D {
public:
public:
/// Coordinates of this vector
double x, y;
@@ -146,7 +146,7 @@ inline Vector2D operator * (double a, const Vector2D& b) { return b * a; }
/// A two dimensional transformation matrix, simply two vectors
class Matrix2D {
public:
public:
Vector2D mx, my;
inline Matrix2D() : mx(1,0), my(0,1) {}