Skip to content

Commit

Permalink
Fix display issues in sample1
Browse files Browse the repository at this point in the history
  • Loading branch information
anderain committed Dec 19, 2023
1 parent 6275f84 commit 57d33d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions samples/sample1-round.kbs
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ let m_radius = 25
let s_radius = 35

let s_rad = 2 * pi * (ss / 60 - 0.25)
let m_rad = 2 * pi * (mm / 60 - 0.25) + s_rad / 60
let h_rad = 2 * pi * (hh % 12 / 12 - 0.25) + m_rad / 60
let m_rad = 2 * pi * ((ss + mm * 60) / 3600 - 0.25)
let h_rad = 2 * pi * ((hh % 12 * 60 + mm) / 720 - 0.25)

let x1 = cx
let y1 = cy
Expand Down

0 comments on commit 57d33d7

Please sign in to comment.