Lines Matching refs:ox
397 static void draw_grid( f32 ox, f32 oy, f32 radius, GXColor clr ) in draw_grid() argument
401 draw_arrow( ox-r,oy, ox+r,oy, clr, 3 ) ; // Horizontal line in draw_grid()
402 draw_arrow( ox,oy+r, ox,oy-r, clr, 3 ) ; // Vertical line in draw_grid()
403 draw_circle( ox,oy, radius, clr, 3 ) ; // Circle in draw_grid()
410 static void draw_acc( f32 ox, f32 oy, f32 radius, f32 ax, f32 ay ) in draw_acc() argument
412 f32 px = ax * radius + ox ; in draw_acc()
415 draw_arrow( ox,oy, px,py, red_clr, 4 ) ; in draw_acc()
423 static void draw_acc2( f32 ox, f32 oy, f32 radius, f32 ax, f32 ay ) in draw_acc2() argument
425 f32 px = ax * radius + ox ; in draw_acc2()
428 draw_dashed_arrow( ox,oy, px,py, red_clr, 4 ) ; in draw_acc2()
433 static void draw_stick( f32 ox, f32 oy, f32 radius, f32 sx, f32 sy, GXColor clr, BOOL dashed ) in draw_stick() argument
435 f32 px = sx * radius + ox; in draw_stick()
439 draw_dashed_arrow( ox,oy, px,py, clr, 4 ) ; in draw_stick()
441 draw_arrow( ox,oy, px,py, clr, 4 ) ; in draw_stick()