style cleanup

This commit is contained in:
2012-09-30 06:12:47 +00:00
parent 8020b3317c
commit ed1cda9a6c
32 changed files with 70 additions and 70 deletions

View File

@@ -954,12 +954,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])