Skip to content

Commit

Permalink
Merge pull request #39 from Ipuch/main
Browse files Browse the repository at this point in the history
release: ready for 1.2.5
  • Loading branch information
Ipuch authored Jul 4, 2024
2 parents 87f7800 + 4124d90 commit 7af8e4f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@ Then, ensure it is accessible in your Python environment by installing the packa
```
@software{pierre_puchaud_2024_11449215,
author = {Pierre Puchaud, Mickael Begon},
title = {pyomeca/pyorerun: CoffeeStain},
title = {pyomeca/pyorerun: CaffeineStrips},
month = jun,
year = 2024,
publisher = {Zenodo},
version = {1.2.3},
version = {1.2.4},
doi = {10.5281/zenodo.11449215},
url = {https://doi.org/10.5281/zenodo.11449215}
}
Expand Down
6 changes: 4 additions & 2 deletions pyorerun/multi_phase_rerun.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,10 @@ def add_phase(self, t_span: np.ndarray, phase: int = 0, window: str = "animation
rerun_biorbd = PhaseRerun(t_span, phase, window)
self.rerun_biorbd_phases[phase][window] = rerun_biorbd

def add_animated_model(self, biomod: BiorbdModel, q: np.ndarray, phase: int = 0, window: str = "animation") -> None:
self.rerun_biorbd_phases[phase][window].add_animated_model(biomod, q)
def add_animated_model(
self, biomod: BiorbdModel, q: np.ndarray, tracked_markers: np.ndarray, phase: int = 0, window: str = "animation"
) -> None:
self.rerun_biorbd_phases[phase][window].add_animated_model(biomod, q, tracked_markers)

def add_xp_markers(self, name: str, markers: PyoMarkers, phase: int = 0, window: str = "animation") -> None:
self.rerun_biorbd_phases[phase][window].add_xp_markers(name, markers)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="pyorerun",
version="1.2.3",
version="1.2.5",
install_requires=[
"ezc3d", # Not yet available on pypi, use `conda install -c conda-forge ezc3d`
"numpy",
Expand Down

0 comments on commit 7af8e4f

Please sign in to comment.