21 lines
459 B
C
21 lines
459 B
C
#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);
|
|
|
|
void ARC_Circle_RenderFill(ARC_Circle *circle, ARC_Renderer *renderer, ARC_Color *color);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // !ARC_GRAPHICS_RECT_H_
|