Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added a model creator panel #79

Merged
merged 27 commits into from
Oct 31, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
c0727d0
Added file to facilitate model creation
pariterre Jul 29, 2022
3b850a7
Fix RT not appearing if no mesh
pariterre Aug 2, 2022
6df93f5
Fixed the bug where experimental markers where lagging behind
pariterre Aug 3, 2022
85614b0
Fixed a bug if two consecutive c3d were openned
pariterre Aug 3, 2022
99c7577
Removed useless requirement file
pariterre Aug 3, 2022
773c012
Moved analyses module to a proper folder and created a first structur…
pariterre Aug 3, 2022
f17e2e2
Changed the show_floor default value to False
pariterre Sep 8, 2022
84127db
Changed the name of the analysis kinematic model panel to c3d editor
pariterre Sep 16, 2022
a37e6c1
Merge remote-tracking branch 'pyomeca/master' into modelCreator
pariterre Sep 16, 2022
3b51b25
Added dynamic events to the viz
pariterre Sep 16, 2022
fa2425f
Moved some stuff
pariterre Sep 16, 2022
2824f36
More verbose message when Q is the wrong size
pariterre Sep 19, 2022
bad93e0
Added movement rectangle to set start and end of trial
pariterre Sep 19, 2022
cc0ab06
Added event editor
pariterre Sep 19, 2022
2feb5e8
Added reading of events types from c3d
pariterre Sep 20, 2022
fc8bc5b
Fixed when first_frame is not 0
pariterre Sep 20, 2022
1e2e0f7
Fixed bug if clicking radio event programmatically
pariterre Sep 20, 2022
fc570ca
Added clear all events
pariterre Sep 20, 2022
611dbf4
Blacked
pariterre Sep 20, 2022
1ba5f3c
Bumped the version to 2.2.0
pariterre Sep 20, 2022
b987210
Conformed events to Nexus
pariterre Sep 21, 2022
f4ad250
added check for black by github action
pariterre Sep 22, 2022
db17100
Forced biorbd 1.9.1
pariterre Sep 23, 2022
de53964
Tried to solve weird AppVeyor bug by not specifying python version
pariterre Sep 23, 2022
2c41113
Merge remote-tracking branch 'pyomeca/master' into modelCreator
pariterre Oct 28, 2022
0cfe8d7
Added extra folders in setup.py
pariterre Oct 31, 2022
82bdfad
Added ezc3d as dependecy to bioviz
pariterre Oct 31, 2022
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
17 changes: 17 additions & 0 deletions .github/workflows/isblacked.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Checks if the code is formatted with black.

name: is your code linted with black?
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.10
uses: actions/setup-python@v1
with:
python-version: '3.10'
- name: Install Black
run: pip install black
- name: Run black --check .
run: black . --check -l120
Loading