-
Notifications
You must be signed in to change notification settings - Fork 138
Fix hover inspection for abstract spaces #1159
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
base: main
Are you sure you want to change the base?
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1159 +/- ##
===========================================
+ Coverage 70.12% 85.23% +15.10%
===========================================
Files 42 38 -4
Lines 2718 2614 -104
===========================================
+ Hits 1906 2228 +322
+ Misses 812 386 -426 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Datseris
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In the Developer's Docs subsection for spaces, can you put a note that spacesize also needs to be implemented if one wants plotting to work out of the box?
|
@hbsmith can you put a note in the dev docs and then we merge this? or is anything else missing? |
|
It's not clear to me what you want me to write or where exactly in the dev docs you want it to go. If you tell me what you want exactly, I can add it. |
|
I don't understand the error and how this PR solves it. The positions in the flocking model are 2D. If you make a tuple out of them it is still 2D. What is the point if accessing them with |
|
if I remember correctly the problem is that |
Currently there's a bug in Agents where trying to hover inspect a 2D continuous plot throws a DimensionMismatch error. This seems analogous to #1090 , fixed in #1092 .
You can reproduce the bug by doing something like:
And trying to hover over any agent. You'll get an error like:
This pull request fixes that.