-
Notifications
You must be signed in to change notification settings - Fork 334
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
Redefine PointND
components as SoA
#2894
Conversation
b1d5851
to
8d95752
Compare
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.
that's it, not more? 😄
fea2254
to
33a1d26
Compare
I just realized we can clean that up even further, we don't even need |
692d228
to
cdeb0c4
Compare
cdeb0c4
to
33f0c1a
Compare
What the title says. This is what prevented us from doing the logical thing in `Arrow3D` extensions (and became even more of an issue after I made the `PointND` components use `VecND` internally in #2894). ### What ### Checklist * [x] I have read and agree to [Contributor Guide](https://github.com/rerun-io/rerun/blob/main/CONTRIBUTING.md) and the [Code of Conduct](https://github.com/rerun-io/rerun/blob/main/CODE_OF_CONDUCT.md) * [x] I've included a screenshot or gif (if applicable) * [x] I have tested [demo.rerun.io](https://demo.rerun.io/pr/2896) (if applicable) - [PR Build Summary](https://build.rerun.io/pr/2896) - [Docs preview](https://rerun.io/preview/pr%3Acmc%2Ffix_vecnd_vs_numpy/docs) - [Examples preview](https://rerun.io/preview/pr%3Acmc%2Ffix_vecnd_vs_numpy/examples)
@@ -213,55 +213,33 @@ impl<A: Archetype> ArchetypeView<A> { | |||
|
|||
#[test] | |||
fn test_df_builder() { | |||
use re_types::components::{Color, Point2D}; | |||
use re_types::components::{Color, Radius}; | |||
|
|||
let points = vec![ |
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.
not points anymore :P
33f0c1a
to
0d4ac6c
Compare
Part of #2884
What
Checklist