From d91c186f5c2c3b92c8e30880b9472a250ecd0838 Mon Sep 17 00:00:00 2001 From: liulinsong Date: Sat, 19 Aug 2023 15:14:00 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3=E7=AC=94=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- samples/clock.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/clock.cpp b/samples/clock.cpp index ca4abf4..ca87d12 100644 --- a/samples/clock.cpp +++ b/samples/clock.cpp @@ -40,7 +40,7 @@ constexpr int HOUR_HAND_LEN = 80; // 时针长度 constexpr int NOT_HOUR_HAND_LEN = 120; // 秒针、分针长度 constexpr int HOUR_HAND_STROKE_WIDTH = 3; // 时针的宽度 constexpr int NOT_HOUR_HAND_STROKE_WIDTH = 2; // 秒针和分钟的宽度 -constexpr int CLOCK_DOT_RADIUS = 5; // 中心原点的半径大小 +constexpr int CLOCK_DOT_RADIUS = 5; // 中心圆点的半径大小 constexpr int CLOCK_DAIL_RADIUS = 180; // 表盘半径大小 constexpr float CLOCK_FONT_SIZE = 24.0f; // 表盘上文字字体大小 constexpr int CLOCK_FONT_STROKE_WIDTH = 2; //表盘文字字体笔画粗细 -- Gitee