Minor formating fixes.
This commit is contained in:
parent
6f53b0c069
commit
4df668e68f
76 changed files with 121 additions and 121 deletions
|
|
@ -129,4 +129,4 @@ Color operator *(const Color& c, unsigned int s)
|
|||
return Color(c.r * s, c.g * s, c.b * s, c.a * s);
|
||||
}
|
||||
|
||||
} // namespace sp
|
||||
} // namespace sp
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ namespace sp { namespace math
|
|||
float bottom, float top,
|
||||
float zNear, float zFar) {
|
||||
|
||||
float rl = (right - left),
|
||||
float rl = (right - left),
|
||||
tb = (top - bottom),
|
||||
fn = (zFar - zNear),
|
||||
rl2 = 2.0f / rl,
|
||||
|
|
|
|||
|
|
@ -154,7 +154,7 @@ Transform& operator*=(Transform& a, const Transform& other)
|
|||
return a;
|
||||
}
|
||||
|
||||
Vector2f operator*(const Transform& transform, const Vector2f& vec)
|
||||
Vector2f operator*(const Transform& transform, const Vector2f& vec)
|
||||
{
|
||||
return transform.transformPoint(vec);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue