Skip to content

Commit e0e78f5

Browse files
Making a more minimal, cleaner repo
1 parent b2a9c6b commit e0e78f5

File tree

537 files changed

+1468
-28031
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

537 files changed

+1468
-28031
lines changed

.gitignore

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
1-
*.pyc
2-
*.pdf
3-
mmseq_control/src/mmseq_control/casadi_c/*
4-
mmseq_control_new/acados_outputs/*
1+
# URDF
52
*.urdf
6-
.vscode/*
3+
4+
# Editors
5+
.vscode/
6+
.cursor/
7+
.ruff_cache/
8+
9+
# Acados
10+
c_generated_code/
11+
acados_*
12+
13+
# Casadi
14+
casadi_c*
15+
16+
# Python
17+
__pycache__/
18+
*.py[cod]
19+
20+
# Results/output data
21+
results/

.pre-commit-config.yaml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,33 @@
88
# 'pre-commit run --all'
99

1010
repos:
11+
- repo: https://github.com/pre-commit/pre-commit-hooks
12+
rev: v5.0.0
13+
hooks:
14+
- id: check-ast
15+
- id: check-yaml
16+
- id: check-added-large-files
17+
args: ['--maxkb=10000']
18+
- id: check-docstring-first
19+
- id: check-executables-have-shebangs
20+
- id: check-shebang-scripts-are-executable
21+
- id: check-merge-conflict
22+
- id: debug-statements
23+
- id: trailing-whitespace
24+
- id: end-of-file-fixer
25+
26+
- repo: https://github.com/astral-sh/ruff-pre-commit
27+
rev: v0.8.2
28+
hooks:
29+
- id: ruff
30+
args: ["--fix"]
31+
32+
- repo: https://github.com/pycqa/isort
33+
rev: 5.13.2
34+
hooks:
35+
- id: isort
36+
args: ["--profile", "black"]
37+
1138
- repo: https://github.com/psf/black
1239
rev: 24.8.0
1340
hooks:

README.md

Lines changed: 66 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
cmake_minimum_required(VERSION 3.0.2)
2-
project(mmseq_assets)
2+
project(mm_assets)
33

44
find_package(catkin REQUIRED)
5-
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/sh
2+
3+
# Compile xacro versions of URDFs to regular versions for consumption by libraries.
4+
# This is mainly used to resolve ROS package paths without hardcoding.
5+
mkdir -p urdf
6+
xacro xacro/panda.urdf.xacro -o urdf/panda.urdf
7+
xacro xacro/panda_tray.urdf.xacro -o urdf/panda_tray.urdf

mmseq_assets/franka_panda/meshes/collision/finger.obj renamed to mm_assets/franka_panda/meshes/collision/finger.obj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,4 +236,3 @@ f 85//85 86//86 87//87
236236
f 88//88 89//89 90//90
237237
f 91//91 92//92 93//93
238238
f 94//94 95//95 96//96
239-

mmseq_assets/franka_panda/meshes/collision/hand.obj renamed to mm_assets/franka_panda/meshes/collision/hand.obj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -514,4 +514,3 @@ f 25//197 60//197 97//197
514514
f 82//198 100//198 71//198
515515
f 43//199 39//199 95//199
516516
f 100//200 82//200 99//200
517-

mmseq_assets/franka_panda/meshes/collision/link0.obj renamed to mm_assets/franka_panda/meshes/collision/link0.obj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -514,4 +514,3 @@ f 62//197 87//197 60//197
514514
f 97//198 87//198 95//198
515515
f 71//199 87//199 7//199
516516
f 88//200 87//200 76//200
517-

mmseq_assets/franka_panda/meshes/collision/link1.obj renamed to mm_assets/franka_panda/meshes/collision/link1.obj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -763,4 +763,3 @@ f 119//296 116//296 151//296
763763
f 151//296 138//297 119//296
764764
f 151//298 87//298 7//298
765765
f 70//299 48//299 151//299
766-

mmseq_assets/franka_panda/meshes/collision/link2.obj renamed to mm_assets/franka_panda/meshes/collision/link2.obj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -762,4 +762,3 @@ f 98//295 147//295 118//295
762762
f 143//296 151//296 149//296
763763
f 151//297 152//297 149//297
764764
f 148//298 135//298 144//298
765-

0 commit comments

Comments
 (0)