Home
last modified time | relevance | path

Searched refs:radius (Results 1 – 10 of 10) sorted by relevance

/RvlSDK-3.2/build/demos/kpadOlddemo/src/
Dsample.c318 static void draw_grid( f32 ox, f32 oy, f32 radius, GXColor clr ) in draw_grid() argument
320 f32 r = radius * 1.4f ; // Cross length in draw_grid()
324 draw_circle( ox,oy, radius, clr, 3 ) ; // Circle in draw_grid()
331 static void draw_acc( f32 ox, f32 oy, f32 radius, f32 ax, f32 ay ) in draw_acc() argument
333 f32 px = ax * radius + ox ; in draw_acc()
334 f32 py = ay * radius + oy ; in draw_acc()
344 static void draw_acc2( f32 ox, f32 oy, f32 radius, f32 ax, f32 ay ) in draw_acc2() argument
346 f32 px = ax * radius + ox ; in draw_acc2()
347 f32 py = ay * radius + oy ; in draw_acc2()
354 static void draw_stick( f32 ox, f32 oy, f32 radius, f32 sx, f32 sy, GXColor clr, BOOL dashed ) in draw_stick() argument
[all …]
Dgraphic.c200 void draw_circle( f32 ox, f32 oy, f32 radius, GXColor clr, f32 width ) in draw_circle() argument
208 if ( radius < width * 0.1f ) { in draw_circle()
219 vx = radius ; in draw_circle()
231 f = radius / sqrtf( vx * vx + vy * vy ) ; in draw_circle()
236 GXPosition2f32( ox + radius, oy ) ; // The last point is the same as the start point in draw_circle()
/RvlSDK-3.2/build/libraries/pad/src/
DPadclamp.c241 static void ClampCircle(s8* px, s8* py, s8 radius, s8 min) in ClampCircle() argument
278 if (radius*radius < squared) in ClampCircle()
282 x = (x * radius) / length; in ClampCircle()
283 y = (y * radius) / length; in ClampCircle()
/RvlSDK-3.2/build/demos/kpaddemo/src/
Dgraphic.c192 void draw_circle( f32 ox, f32 oy, f32 radius, GXColor clr, f32 width ) in draw_circle() argument
199 if ( radius < width * 0.1f ) { in draw_circle()
210 vx = radius ; in draw_circle()
222 f = radius / sqrtf( vx * vx + vy * vy ) ; in draw_circle()
227 GXPosition2f32( ox + radius, oy ) ; // The last point is the same as the start point in draw_circle()
Dsample.c401 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
[all …]
/RvlSDK-3.2/build/libraries/wpad/src/
DWPADClamp.c42 static void __ClampStickCircle ( void *px, void *py, s16 radius, s16 min, u8 type );
477 static void __ClampStickCircle(void *px, void *py, s16 radius, s16 min, u8 type) in __ClampStickCircle() argument
525 if (radius*radius < squared) in __ClampStickCircle()
529 x = (x * radius) / length; in __ClampStickCircle()
530 y = (y * radius) / length; in __ClampStickCircle()
/RvlSDK-3.2/build/demos/kpaddemo/include/
Dgraphic.h43 extern void draw_circle( f32 ox, f32 oy, f32 radius, GXColor clr, f32 width ) ;
/RvlSDK-3.2/build/demos/kpadOlddemo/include/
Dgraphic.h43 extern void draw_circle( f32 ox, f32 oy, f32 radius, GXColor clr, f32 width ) ;
/RvlSDK-3.2/build/demos/gxdemo/src/Culling/
Dcul-viewport.c339 f32 radius; member
370 mySphere[i].radius = 10.0f; in myInitModel()
437 mmtx[0][0] = mmtx[1][1] = mmtx[2][2] = mySphere[i].radius; in myDrawModel()
/RvlSDK-3.2/include/revolution/
Dwpad.h516 s8 radius; member