Skip to content

Commit 59256bf

Browse files
committed
core/generic/dft: Fix formatting
1 parent e205b3e commit 59256bf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/core/generic/dft.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,8 @@ class DftStylus {
174174
xt *= m_config.width / m_config.dft_tilt_distance;
175175
yt *= m_config.height / m_config.dft_tilt_distance;
176176

177-
const f64 azm = std::fmod(std::atan2(-yt, xt) + (2 * M_PI), 2 * M_PI);
177+
const f64 azm =
178+
std::fmod(std::atan2(-yt, xt) + (2 * M_PI), 2 * M_PI);
178179
const f64 alt = std::asin(std::min(1.0, std::hypot(xt, yt)));
179180

180181
m_stylus.azimuth = azm;

0 commit comments

Comments
 (0)