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

chore: use Vector4 in dimensions for Ephys Link #12

Merged
merged 1 commit into from
Mar 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion src/vbl_aquarium/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.0.7"
__version__ = "0.0.8"
6 changes: 3 additions & 3 deletions src/vbl_aquarium/models/ephys_link.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,15 @@ class GetManipulatorsResponse(VBLBaseModel):
:type manipulators: list[str]
:param num_axes: Number of axes for the manipulators.
:type num_axes: int
:param dimensions: Dimensions of the manipulators (first 3 axes in unified manipulator space).
:type dimensions: Vector3
:param dimensions: Dimensions of the manipulators (3-axis manipulators should set w to 0).
:type dimensions: Vector4
:param error: Error message if any.
:type error: str
"""

manipulators: list[str] = Field(default_factory=list)
num_axes: int = Field(default=0, ge=-1)
dimensions: Vector3 = Vector3()
dimensions: Vector4 = Vector4()
error: str = ""


Expand Down