1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Replaced some uses of AffineTransform::identity with a default-constructed object

This commit is contained in:
jules 2015-12-22 17:46:31 +00:00
parent 21d42f346f
commit edec7b34b2
22 changed files with 55 additions and 49 deletions

View file

@ -355,13 +355,13 @@ void LowLevelGraphicsPostScriptRenderer::fillRect (const Rectangle<float>& r)
{
Path p;
p.addRectangle (r);
fillPath (p, AffineTransform::identity);
fillPath (p, AffineTransform());
}
}
void LowLevelGraphicsPostScriptRenderer::fillRectList (const RectangleList<float>& list)
{
fillPath (list.toPath(), AffineTransform::identity);
fillPath (list.toPath(), AffineTransform());
}
//==============================================================================
@ -510,7 +510,7 @@ void LowLevelGraphicsPostScriptRenderer::drawLine (const Line <float>& line)
{
Path p;
p.addLineSegment (line, 1.0f);
fillPath (p, AffineTransform::identity);
fillPath (p, AffineTransform());
}
//==============================================================================