2023-06-25 02:22:50 -06:00
|
|
|
#ifndef ARC_GRAPHICS_CIRCLE_H_
|
|
|
|
|
#define ARC_GRAPHICS_CIRCLE_H_
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include "arc/graphics/color.h"
|
|
|
|
|
#include "arc/graphics/renderer.h"
|
|
|
|
|
#include "arc/math/circle.h"
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
|
|
void ARC_Circle_Render(ARC_Circle *circle, ARC_Renderer *renderer, ARC_Color *color);
|
|
|
|
|
|
2023-12-03 09:25:28 +00:00
|
|
|
void ARC_Circle_RenderFill(ARC_Circle *circle, ARC_Renderer *renderer, ARC_Color *color);
|
2023-06-25 02:22:50 -06:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif // !ARC_GRAPHICS_RECT_H_
|