-
Notifications
You must be signed in to change notification settings - Fork 394
Commit
This makes the API far easier to use in the very common case where the caller wants to split all of their data in unit-length batches. I think it's worth the extra generated code. Notes: * The naming sucks. * I disabled columnar APIs entirely for all blueprint stuff. I don't see any reason to have all this code? ```diff let times = TimeColumn::new_sequence("step", 0..STEPS); let scalars = (0..STEPS).map(|step| (step as f64 / 10.0).sin()); rec.send_columns_v2( "scalars", [times], rerun::Scalar::update_fields() .with_many_scalar(scalars) - .columns(std::iter::repeat(1).take(STEPS as _))?, + .unary_columns()?, )?; ``` * Follow-up to #8753
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.