Skip to content

Commit 01a15f7

Browse files
committed
o trim whitespace
1 parent b29bf7e commit 01a15f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

uxarray/grid/dual.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ def _order_nodes(
237237
d_side = np.dot(node_cross, node_diff)
238238
d_dot_norm = np.dot(node_zero, node_diff) / (node_zero_mag * node_diff_mag)
239239

240-
# Clamp to valid range for arccos to avoid numerical errors
240+
# Clamp to valid range for arccos to avoid numerical errors
241241
d_dot_norm = np.clip(d_dot_norm, -1.0, 1.0)
242242

243243
d_angles[j] = np.arccos(d_dot_norm)

0 commit comments

Comments
 (0)