diff options
Diffstat (limited to 'src/gdisp/gdisp_options.h')
| -rw-r--r-- | src/gdisp/gdisp_options.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/gdisp/gdisp_options.h b/src/gdisp/gdisp_options.h index 4c004808..09502618 100644 --- a/src/gdisp/gdisp_options.h +++ b/src/gdisp/gdisp_options.h @@ -94,6 +94,14 @@ #define GDISP_NEED_CIRCLE FALSE #endif /** + * @brief Are dual circle functions needed (one circle inside another). + * @details Defaults to FALSE + * @note Uses integer algorithms only. It does not use any trig or floating point. + */ + #ifndef GDISP_NEED_DUALCIRCLE + #define GDISP_NEED_DUALCIRCLE FALSE + #endif + /** * @brief Are ellipse functions needed. * @details Defaults to FALSE * @note Uses integer algorithms only. It does not use any trig or floating point. |
