circle rendering, might change to make more efficient

This commit is contained in:
herbglitch 2023-06-25 02:22:50 -06:00
parent 57ff3302ad
commit 092908819d
4 changed files with 84 additions and 0 deletions

20
include/arc/math/circle.h Normal file
View file

@ -0,0 +1,20 @@
#ifndef ARC_MATH_CIRCLE_H_
#define ARC_MATH_CIRCLE_H_
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct ARC_Circle {
int32_t x;
int32_t y;
int32_t r;
} ARC_Circle;
#ifdef __cplusplus
}
#endif
#endif // ARC_MATH_CIRCLE_H_