Code cleanup: style

This commit is contained in:
2014-04-20 22:05:05 +10:00
parent 1e3f8b517b
commit 1a1bc281e6
8 changed files with 22 additions and 22 deletions

View File

@@ -749,12 +749,12 @@ void ui_draw_but_WAVEFORM(ARegion *ar, uiBut *but, uiWidgetColors *UNUSED(wcol),
static float polar_to_x(float center, float diam, float ampli, float angle)
{
return center + diam *ampli * cosf(angle);
return center + diam * ampli * cosf(angle);
}
static float polar_to_y(float center, float diam, float ampli, float angle)
{
return center + diam *ampli * sinf(angle);
return center + diam * ampli * sinf(angle);
}
static void vectorscope_draw_target(float centerx, float centery, float diam, const float colf[3])