Skip to content

Commit e6ef992

Browse files
committed
Update shapes_digital_clock.c
1 parent c7c6aaf commit e6ef992

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

examples/shapes/shapes_digital_clock.c

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -284,11 +284,13 @@ static void DrawDisplaySegment(Vector2 center, int length, int thick, bool verti
284284
if (!vertical)
285285
{
286286
// Horizontal segment points
287-
// 3___________________________5
288-
// / \
289-
// /1 x 6\
290-
// \ /
291-
// \2___________________________4/
287+
/*
288+
3___________________________5
289+
/ \
290+
/1 x 6\
291+
\ /
292+
\2___________________________4/
293+
*/
292294
Vector2 segmentPointsH[6] = {
293295
(Vector2){ center.x - length/2.0f - thick/2.0f, center.y }, // Point 1
294296
(Vector2){ center.x - length/2.0f, center.y + thick/2.0f }, // Point 2

0 commit comments

Comments
 (0)