Skip to content

Commit

Permalink
Merge branch 'update-0.3.3' into 359_dev_mesh_rigid_body
Browse files Browse the repository at this point in the history
  • Loading branch information
skim0119 authored Apr 28, 2024
2 parents eec41cf + b939130 commit 973eb9d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ pre-commit-install:
.PHONY: black
black:
poetry run black --version
poetry run black --config pyproject.toml --required-version 21.12b0 elastica tests examples
poetry run black --config pyproject.toml --required-version 24.3.0 elastica tests examples

.PHONY: black-check
black-check:
Expand Down
12 changes: 4 additions & 8 deletions elastica/rod/knot_theory.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,20 +28,16 @@ class KnotTheoryCompatibleProtocol(Protocol):
"""

@property
def position_collection(self) -> np.ndarray:
...
def position_collection(self) -> np.ndarray: ...

@property
def director_collection(self) -> np.ndarray:
...
def director_collection(self) -> np.ndarray: ...

@property
def radius(self) -> np.ndarray:
...
def radius(self) -> np.ndarray: ...

@property
def base_length(self) -> np.ndarray:
...
def base_length(self) -> np.ndarray: ...


class KnotTheory:
Expand Down

0 comments on commit 973eb9d

Please sign in to comment.