Skip to content

Commit

Permalink
Merge ce41b15 into 6b20250
Browse files Browse the repository at this point in the history
  • Loading branch information
tirkarthi committed Jul 18, 2020
2 parents 6b20250 + ce41b15 commit fac6e09
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions original/transformations.py
Expand Up @@ -30,7 +30,7 @@
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.

"""Homogeneous Transformation Matrices and Quaternions.
r"""Homogeneous Transformation Matrices and Quaternions.
A library for calculating 4x4 matrices for translating, rotating, reflecting,
scaling, shearing, projecting, orthogonalizing, and superimposing arrays of
Expand Down Expand Up @@ -887,7 +887,7 @@ def orthogonalization_matrix(lengths, angles):


def affine_matrix_from_points(v0, v1, shear=True, scale=True, usesvd=True):
"""Return affine transform matrix to register two point sets.
r"""Return affine transform matrix to register two point sets.
v0 and v1 are shape (ndims, \*) arrays of at least ndims non-homogeneous
coordinates, where ndims is the dimensionality of the coordinate space.
Expand Down Expand Up @@ -996,7 +996,7 @@ def affine_matrix_from_points(v0, v1, shear=True, scale=True, usesvd=True):


def superimposition_matrix(v0, v1, scale=False, usesvd=True):
"""Return matrix to transform given 3D point set into second point set.
r"""Return matrix to transform given 3D point set into second point set.
v0 and v1 are shape (3, \*) or (4, \*) arrays of at least 3 points.
Expand Down
6 changes: 3 additions & 3 deletions transforms3d/_gohlketransforms.py
Expand Up @@ -35,7 +35,7 @@
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.

"""Homogeneous Transformation Matrices and Quaternions.
r"""Homogeneous Transformation Matrices and Quaternions.
A library for calculating 4x4 matrices for translating, rotating, reflecting,
scaling, shearing, projecting, orthogonalizing, and superimposing arrays of
Expand Down Expand Up @@ -892,7 +892,7 @@ def orthogonalization_matrix(lengths, angles):


def affine_matrix_from_points(v0, v1, shear=True, scale=True, usesvd=True):
"""Return affine transform matrix to register two point sets.
r"""Return affine transform matrix to register two point sets.
v0 and v1 are shape (ndims, \*) arrays of at least ndims non-homogeneous
coordinates, where ndims is the dimensionality of the coordinate space.
Expand Down Expand Up @@ -1001,7 +1001,7 @@ def affine_matrix_from_points(v0, v1, shear=True, scale=True, usesvd=True):


def superimposition_matrix(v0, v1, scale=False, usesvd=True):
"""Return matrix to transform given 3D point set into second point set.
r"""Return matrix to transform given 3D point set into second point set.
v0 and v1 are shape (3, \*) or (4, \*) arrays of at least 3 points.
Expand Down
2 changes: 1 addition & 1 deletion transforms3d/reflections.py
Expand Up @@ -39,7 +39,7 @@ def rfnorm2mat(normal):
.. math::
R_{ij} = I_{ij} - 2\\frac{a_i a_j}{\|a\|^2}
R_{ij} = I_{ij} - 2\\frac{a_i a_j}{\\|a\\|^2}
where $I$ is the identity matrix.
"""
Expand Down

0 comments on commit fac6e09

Please sign in to comment.