Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,11 @@
{{ docname | escape_latex }}}} ends here.}}
"""

linkcheck_ignore = [
# Zstandard data is incomplete
'https://en.cppreference.com/',
]

# -- Get version information and date from Git ----------------------------

try:
Expand Down
2 changes: 1 addition & 1 deletion doc/position-orientation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ The first angle (*azimuth*) rotates around the z-axis,
the second angle (*elevation*) around the (previously rotated) x-axis
and the third angle (*roll*) around the (previously rotated) y-axis.

__ https://en.wikipedia.org/wiki/Euler_angles#Tait-Bryan_angles
__ https://en.wikipedia.org/wiki/Euler_angles#TaitBryan_angles

All angles are given in degrees.
The *elevation* and *roll* angles are optional, with a default of zero.
Expand Down
4 changes: 2 additions & 2 deletions doc/rotation-matrices.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,7 @@
"**Note:**\n",
"\n",
"The argument of the `asin()` function has to be in the domain `[-1.0; 1.0]`\n",
"(see https://en.cppreference.com/w/c/numeric/math/asin).\n",
"(see https://en.cppreference.com/c/numeric/math/asin).\n",
"\n",
"Due to rounding errors,\n",
"the value might be slightly outside this range,\n",
Expand Down Expand Up @@ -849,7 +849,7 @@
"\n",
"If the implementation supports IEEE floating-point arithmetic (IEC 60559),\n",
"no `NaN` is returned (except if one of the inputs is `NaN`),\n",
"see https://en.cppreference.com/w/c/numeric/math/atan2.\n",
"see https://en.cppreference.com/c/numeric/math/atan2.\n",
"\n",
"In this case,\n",
"`atan2()` will return $\\pm 0$ or $\\pm \\pi$\n",
Expand Down