ARC_FObround added

This commit is contained in:
herbglitch 2023-06-25 22:14:32 -06:00
parent c3361f640c
commit 5aede928d8
7 changed files with 62 additions and 0 deletions

View file

@ -14,6 +14,31 @@ typedef struct ARC_Obround {
int32_t h;
} ARC_Obround;
typedef struct ARC_FObround {
float x;
float y;
float r;
float h;
} ARC_FObround;
/**
* @brief casts Obround to FObround
*
* @param obround ARC_Obround to be casted
*
* @return ARC_FObround
*/
ARC_FObround ARC_Obround_CastToFObround(ARC_Obround *obround);
/**
* @brief casts FObround to Obround
*
* @param obround ARC_FObround to be casted
*
* @return ARC_Obround
*/
ARC_Obround ARC_FObround_CastToObround(ARC_FObround *obround);
#ifdef __cplusplus
}
#endif