Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
KincoActuatorIsaacLab
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
kevin
KincoActuatorIsaacLab
Commits
ce8c1c01
Commit
ce8c1c01
authored
May 08, 2023
by
Mayank Mittal
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixes linting in the code
parent
8e42f057
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
4 deletions
+3
-4
installation.rst
docs/source/setup/installation.rst
+1
-1
02_wrappers.rst
docs/source/tutorials_envs/02_wrappers.rst
+1
-1
process_meshes_to_obj.py
source/tools/process_meshes_to_obj.py
+1
-2
No files found.
docs/source/setup/installation.rst
View file @
ce8c1c01
...
@@ -190,7 +190,7 @@ use the following command:
...
@@ -190,7 +190,7 @@ use the following command:
.. code:: bash
.. code:: bash
conda activate orbit
conda activate orbit
Once you are in the virtual environment, you do not need to use ``./orbit.sh -p``
Once you are in the virtual environment, you do not need to use ``./orbit.sh -p``
to run python scripts. You can use the default python executable in your environment.
to run python scripts. You can use the default python executable in your environment.
...
...
docs/source/tutorials_envs/02_wrappers.rst
View file @
ce8c1c01
...
@@ -116,7 +116,7 @@ Wrapper for learning frameworks
...
@@ -116,7 +116,7 @@ Wrapper for learning frameworks
Every learning framework has its own API for interacting with environments. For example, the
Every learning framework has its own API for interacting with environments. For example, the
`Stable Baselines3 <https://stable-baselines3.readthedocs.io/en/master/>`__ library uses the
`Stable Baselines3 <https://stable-baselines3.readthedocs.io/en/master/>`__ library uses the
`gym.Env <https://gymnasium.farama.org/api/env/>`__ interface to interact with environments.
`gym.Env <https://gymnasium.farama.org/api/env/>`__ interface to interact with environments.
However, libraries like `RL-Games <https://github.com/Denys88/rl_games>`__ or
However, libraries like `RL-Games <https://github.com/Denys88/rl_games>`__ or
`RSL-RL <https://github.com/leggedrobotics/rsl_rl>`__ use their own API for interfacing with a
`RSL-RL <https://github.com/leggedrobotics/rsl_rl>`__ use their own API for interfacing with a
learning environments. Since there is no one-size-fits-all solution, we do not base the :class:`IsaacEnv`
learning environments. Since there is no one-size-fits-all solution, we do not base the :class:`IsaacEnv`
class on any particular learning framework's environment definition. Instead, we implement
class on any particular learning framework's environment definition. Instead, we implement
...
...
source/tools/process_meshes_to_obj.py
View file @
ce8c1c01
...
@@ -46,7 +46,6 @@ def run_blender_convert2obj(in_file: str, out_file: str):
...
@@ -46,7 +46,6 @@ def run_blender_convert2obj(in_file: str, out_file: str):
Args:
Args:
in_file (str): Input mesh file.
in_file (str): Input mesh file.
out_file (str): Output obj file.
out_file (str): Output obj file.
format (str): The file type to import.
"""
"""
# resolve for python file
# resolve for python file
tools_dirname
=
os
.
path
.
dirname
(
os
.
path
.
abspath
(
__file__
))
tools_dirname
=
os
.
path
.
dirname
(
os
.
path
.
abspath
(
__file__
))
...
@@ -93,4 +92,4 @@ if __name__ == "__main__":
...
@@ -93,4 +92,4 @@ if __name__ == "__main__":
# Parse command line arguments
# Parse command line arguments
args
=
parse_cli_args
()
args
=
parse_cli_args
()
# Run conversion
# Run conversion
convert_meshes
(
args
.
input_dir
,
args
.
output_dir
)
convert_meshes
(
[
args
.
input_dir
],
[
args
.
output_dir
]
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment