Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/source/overview/sim/atomic_actions.md
Original file line number Diff line number Diff line change
Expand Up @@ -238,4 +238,4 @@ is_success, traj = engine.execute_static(target_list=[target_pose])

- {doc}`planners/motion_generator` — the trajectory planner used by every action
- {doc}`sim_robot` — how control parts and IK solvers are configured
- Tutorial: `scripts/tutorials/sim/atomic_actions.py`
- Tutorial: `scripts/tutorials/atomic_action/atomic_actions.py`
4 changes: 2 additions & 2 deletions docs/source/tutorial/atomic_actions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ For the full design overview, architecture diagram, and extension guide see
The Code
--------

The tutorial corresponds to the ``atomic_actions.py`` script in the ``scripts/tutorials/sim``
The tutorial corresponds to the ``atomic_actions.py`` script in the ``scripts/tutorials/atomic_action``
directory.

.. dropdown:: Code for atomic_actions.py
:icon: code

.. literalinclude:: ../../../scripts/tutorials/sim/atomic_actions.py
.. literalinclude:: ../../../scripts/tutorials/atomic_action/atomic_actions.py
:language: python
:linenos:

Expand Down
5 changes: 4 additions & 1 deletion embodichain/lab/sim/atomic_actions/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,11 @@
MoveAction,
PickUpAction,
PlaceAction,
UprightAction,
MoveActionCfg,
PickUpActionCfg,
PlaceActionCfg,
UprightActionCfg,
)
from .engine import (
AtomicActionEngine,
Expand All @@ -47,7 +49,6 @@
__all__ = [
# Core classes
"Affordance",
"GraspPose",
"InteractionPoints",
"ObjectSemantics",
"ActionCfg",
Expand All @@ -56,9 +57,11 @@
"MoveAction",
"PickUpAction",
"PlaceAction",
"UprightAction",
"MoveActionCfg",
"PickUpActionCfg",
Comment on lines 58 to 62
"PlaceActionCfg",
"UprightActionCfg",
# Engine
"AtomicActionEngine",
"register_action",
Expand Down
Loading
Loading