Lines Matching refs:radius
401 static void draw_grid( f32 ox, f32 oy, f32 radius, GXColor clr ) in draw_grid() argument
403 f32 r = radius * 1.4f ; // Crosshair length in draw_grid()
407 draw_circle( ox,oy, radius, clr, 3 ) ; // Circle in draw_grid()
414 static void draw_acc( f32 ox, f32 oy, f32 radius, f32 ax, f32 ay ) in draw_acc() argument
416 f32 px = ax * radius + ox ; in draw_acc()
417 f32 py = ay * radius + oy ; in draw_acc()
427 static void draw_acc2( f32 ox, f32 oy, f32 radius, f32 ax, f32 ay ) in draw_acc2() argument
429 f32 px = ax * radius + ox ; in draw_acc2()
430 f32 py = ay * radius + oy ; in draw_acc2()
439 static void draw_stick( f32 ox, f32 oy, f32 radius, f32 sx, f32 sy, GXColor clr, BOOL dashed ) in draw_stick() argument
441 f32 px = sx * radius + ox; in draw_stick()
442 f32 py = sy * radius + oy; in draw_stick()