mirror of
https://github.com/nitraiolo/CfgUSBLoader.git
synced 2024-12-04 09:04:14 +01:00
56 lines
2.1 KiB
C
56 lines
2.1 KiB
C
/*------------------------------------------------------------------------------
|
|
Copyright (c) 2010 The GRRLIB Team
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
all copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
THE SOFTWARE.
|
|
------------------------------------------------------------------------------*/
|
|
|
|
#include <math.h>
|
|
|
|
#include <grrlib.h>
|
|
|
|
/**
|
|
* Draw a circle.
|
|
* @author Dark_Link
|
|
* @param x Specifies the x-coordinate of the circle.
|
|
* @param y Specifies the y-coordinate of the circle.
|
|
* @param radius The radius of the circle.
|
|
* @param color The color of the circle in RGBA format.
|
|
* @param filled Set to true to fill the circle.
|
|
*/
|
|
void GRRLIB_Circle (const f32 x, const f32 y, const f32 radius,
|
|
const u32 color, const u8 filled) {
|
|
guVector v[36];
|
|
u32 ncolor[36];
|
|
u32 a;
|
|
f32 ra;
|
|
f32 G_DTOR = M_DTOR * 10;
|
|
|
|
for (a = 0; a < 36; a++) {
|
|
ra = a * G_DTOR;
|
|
|
|
v[a].x = cos(ra) * radius + x;
|
|
v[a].y = sin(ra) * radius + y;
|
|
v[a].z = 0.0f;
|
|
ncolor[a] = color;
|
|
}
|
|
|
|
if (!filled) GRRLIB_GXEngine(v, ncolor, 36, GX_LINESTRIP );
|
|
else GRRLIB_GXEngine(v, ncolor, 36, GX_TRIANGLEFAN);
|
|
}
|