Skip to content

Commit

Permalink
Add headings
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderFabisch committed Nov 28, 2023
1 parent 583c763 commit 3241b1b
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 4 deletions.
5 changes: 4 additions & 1 deletion movement_primitives/dmp_potential_field.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
"""Visualization of DMP as potential field."""
"""Potential Field of DMP
======================
Visualization of DMP as potential field."""
import numpy as np
from .dmp import (
dmp_transformation_system, obstacle_avoidance_acceleration_2d, phase)
Expand Down
6 changes: 5 additions & 1 deletion movement_primitives/plot.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
"""Tools for plotting multi-dimensional trajectories."""
"""Plotting Tools
==============
Tools for plotting multi-dimensional trajectories.
"""
import matplotlib.pyplot as plt


Expand Down
6 changes: 5 additions & 1 deletion movement_primitives/spring_damper.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
"""Spring-damper based attractors."""
"""Spring-Damper Based Attractors
==============================
Spring-damper based attractors are the basis of a DMP's transformation system.
"""
import numpy as np
import pytransform3d.rotations as pr
from .base import PointToPointMovement
Expand Down
6 changes: 5 additions & 1 deletion movement_primitives/visualization.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
"""3D visualization tools for movement primitives."""
"""Visualization Tools
===================
3D visualization tools for movement primitives.
"""
import numpy as np
import open3d as o3d
import scipy as sp
Expand Down

0 comments on commit 3241b1b

Please sign in to comment.