Skip to content

Commit

Permalink
Merge pull request sympy#24046 from TJStienstra/PlanarJoint
Browse files Browse the repository at this point in the history
[GSoC] Planar Joint
  • Loading branch information
moorepants authored Sep 23, 2022
2 parents d9df68a + 5de0e10 commit 870bd54
Show file tree
Hide file tree
Showing 5 changed files with 619 additions and 12 deletions.
158 changes: 158 additions & 0 deletions doc/src/modules/physics/mechanics/api/PlanarJoint.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions doc/src/modules/physics/mechanics/api/joint.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ CylindricalJoint
.. autoclass:: CylindricalJoint
:members:

PlanarJoint
-----------

.. autoclass:: PlanarJoint
:members:

JointsMethod (Docstring)
========================

Expand Down
4 changes: 2 additions & 2 deletions sympy/physics/mechanics/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

'SymbolicSystem',

'PinJoint', 'PrismaticJoint', 'CylindricalJoint',
'PinJoint', 'PrismaticJoint', 'CylindricalJoint', 'PlanarJoint',

'JointsMethod'
]
Expand Down Expand Up @@ -61,4 +61,4 @@

from .jointsmethod import JointsMethod

from .joint import PinJoint, PrismaticJoint, CylindricalJoint
from .joint import PinJoint, PrismaticJoint, CylindricalJoint, PlanarJoint
Loading

0 comments on commit 870bd54

Please sign in to comment.