2023-06-25 02:22:50 -06:00
|
|
|
#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;
|
|
|
|
|
|
2025-02-11 00:57:39 -07:00
|
|
|
typedef struct ARC_FCircle {
|
|
|
|
|
float x;
|
|
|
|
|
float y;
|
|
|
|
|
float r;
|
|
|
|
|
} ARC_FCircle;
|
|
|
|
|
|
|
|
|
|
typedef struct ARC_DCircle {
|
|
|
|
|
double x;
|
|
|
|
|
double y;
|
|
|
|
|
double r;
|
|
|
|
|
} ARC_DCircle;
|
|
|
|
|
|
2025-04-12 00:45:51 -06:00
|
|
|
void TEMP_Circle_Placeholder(void);
|
|
|
|
|
|
2023-06-25 02:22:50 -06:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif // ARC_MATH_CIRCLE_H_
|