Skip to content
Snippets Groups Projects
Commit df909679 authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

rst fixes

parent f3f75cc3
No related branches found
No related tags found
No related merge requests found
...@@ -38,7 +38,7 @@ log = logging.getLogger(__name__) ...@@ -38,7 +38,7 @@ log = logging.getLogger(__name__)
class TriangleMesh(object): class TriangleMesh(object):
"""The ``TriangleMesh`` class represents a 3D model. A mesh is defined by a """The ``TriangleMesh`` class represents a 3D model. A mesh is defined by a
collection of ``N`` vertices, and ``M`` triangles. The triangles are collection of ``N`` vertices, and ``M`` triangles. The triangles are
defined by ``(M, 3)) indices into the list of vertices. defined by ``(M, 3)`` indices into the list of vertices.
A ``TriangleMesh`` instance has the following attributes: A ``TriangleMesh`` instance has the following attributes:
......
...@@ -184,10 +184,11 @@ def decompose(xform, angles=True): ...@@ -184,10 +184,11 @@ def decompose(xform, angles=True):
is returned. is returned.
:returns: The following: :returns: The following:
- A sequence of three scales
- A sequence of three translations - A sequence of three scales
- A sequence of three rotations, in radians. Or, if - A sequence of three translations
``angles is False``, a rotation matrix. - A sequence of three rotations, in radians. Or, if
``angles is False``, a rotation matrix.
""" """
# The inline comments in the code below are taken verbatim from # The inline comments in the code below are taken verbatim from
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment