Skip to content

Commit 8c5c53a

Browse files
committed
DOC: Text changes suggested by Tracy
1 parent 626a2cb commit 8c5c53a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: doc/rotation/naive-euler-angles-interpolation.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"source": [
1818
"# Naive Interpolation of Euler Angles\n",
1919
"\n",
20-
"This method for interpolating 3D rotations is very much not recommended!\n",
20+
"This method for interpolating 3D rotations is not recommended at all!\n",
2121
"\n",
2222
"Since 3D rotations can be represented by a list of three angles,\n",
2323
"it might be tempting to simply interpolate those angles independently.\n",

Diff for: src/splines/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ def __init__(self, segments, grid=None):
4242
unstable. Precision problems can start to appear for orders
4343
larger than 20-30.
4444
45-
This shouldn't be a problem since most commonly splines of degree 3
45+
This shouldn't be a problem, since most commonly splines of degree 3
4646
(i.e. cubic splines) are used.
4747
4848
:param segments: Sequence of polynomial segments.
4949
Each segment :math:`\boldsymbol{a}_i` contains coefficients
5050
for the monomial basis (in order of decreasing degree).
51-
Different segments can have different polynomial degree.
51+
Different segments can have different polynomial degrees.
5252
:param grid: Sequence of parameter values :math:`t_i` corresponding to
5353
segment boundaries. Must be strictly increasing.
5454
If not specified, a uniform grid is used (0, 1, 2, 3, ...).

0 commit comments

Comments
 (0)