Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
Reputeless authored Jan 15, 2024
1 parent c1794be commit bff5833
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Siv3D/include/Siv3D/detail/Rect.ipp
Original file line number Diff line number Diff line change
Expand Up @@ -822,13 +822,13 @@ namespace s3d
{
case 1:
case -3:
return { bl().rotate90At(_pos,1),size.yx() }; // 1 回または -3 回
return { bl().rotate90At(_pos, 1),size.yx() }; // 1 回または -3 回
case 2:
case -2:
return { br().rotate90At(_pos,2),size }; // 2 回または -2 回
return { br().rotate90At(_pos, 2),size }; // 2 回または -2 回
case 3:
case -1:
return { tr().rotate90At(_pos,3),size.yx() }; // 3 回または -1 回
return { tr().rotate90At(_pos, 3),size.yx() }; // 3 回または -1 回
default:
return *this; // 0 回
}
Expand Down

0 comments on commit bff5833

Please sign in to comment.