You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Both Python & C++ APIs have ways of partitioning a component column arbitrarily to e.g. log point clouds in a single send_columns call.
Rust however, right now only supports partitions of length 1 for each element (i.e. at each timestep you end up with an array of length 1) which is still great for the usecase of sending e.g. Scalar, but not the full picture.
Note that the lower level send_chunk API that the Rust recording stream comes with has none such restrictions (and is what is used by Python and C++).
The text was updated successfully, but these errors were encountered:
Both Python & C++ APIs have ways of partitioning a component column arbitrarily to e.g. log point clouds in a single
send_columns
call.Rust however, right now only supports partitions of length 1 for each element (i.e. at each timestep you end up with an array of length 1) which is still great for the usecase of sending e.g.
Scalar
, but not the full picture.Note that the lower level
send_chunk
API that the Rust recording stream comes with has none such restrictions (and is what is used by Python and C++).The text was updated successfully, but these errors were encountered: