Skip to content

Commit

Permalink
do not use github mobile to fix coding style
Browse files Browse the repository at this point in the history
  • Loading branch information
ruslan-ilesik committed Oct 5, 2023
1 parent f22e75a commit c34ad3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dpp/utility.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ namespace dpp {
}
if (t < 1.0 / 6.0) {
return p + (q - p) * 6.0 * t;
} else if (t < 0.5) {
} else if (t < 0.5) {
return q;
} else if (t < 2.0 / 3.0) {
return p + (q - p) * (2.0 / 3.0 - t) * 6.0;
Expand Down

0 comments on commit c34ad3b

Please sign in to comment.