Skip to content

Commit 4e43c05

Browse files
authored
Display scalar partial updates snippet in API docs (#8770)
Title. * Follow-up to #8753
1 parent b804275 commit 4e43c05

File tree

7 files changed

+101
-9
lines changed

7 files changed

+101
-9
lines changed

crates/store/re_types/definitions/rerun/archetypes/points3d.fbs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace rerun.archetypes;
77
/// \example archetypes/points3d_simple !api title="Simple 3D points" image="https://static.rerun.io/point3d_simple/32fb3e9b65bea8bd7ffff95ad839f2f8a157a933/1200w.png"
88
/// \example archetypes/points3d_random title="Randomly distributed 3D points with varying color and radius" image="https://static.rerun.io/point3d_random/7e94e1806d2c381943748abbb3bedb68d564de24/1200w.png"
99
/// \example archetypes/points3d_ui_radius title="Log points with radii given in UI points" image="https://static.rerun.io/point3d_ui_radius/e051a65b4317438bcaea8d0eee016ac9460b5336/1200w.png"
10-
/// \example archetypes/points3d_send_columns title="Send several point clouds with varying point count over time in a single call" image="https://static.rerun.io/points3d_send_columns/633b524a2ee439b0e3afc3f894f4927ce938a3ec/1200w.png" missing="rs"
10+
/// \example archetypes/points3d_send_columns title="Send several point clouds with varying point count over time in a single call" image="https://static.rerun.io/points3d_send_columns/633b524a2ee439b0e3afc3f894f4927ce938a3ec/1200w.png"
1111
table Points3D (
1212
"attr.rust.archetype_eager",
1313
"attr.cpp.archetype_eager",

crates/store/re_types/definitions/rerun/archetypes/scalar.fbs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace rerun.archetypes;
1414
///
1515
/// \example archetypes/scalar_simple title="Simple line plot" image="https://static.rerun.io/scalar_simple/8bcc92f56268739f8cd24d60d1fe72a655f62a46/1200w.png"
1616
/// \example archetypes/scalar_multiple_plots !api title="Multiple time series plots" image="https://static.rerun.io/scalar_multiple/15845c2a348f875248fbd694e03eabd922741c4c/1200w.png"
17-
/// \example archetypes/scalar_send_columns !api title="Multiple scalars in a single `send_columns` call" image="https://static.rerun.io/scalar_send_columns/b4bf172256f521f4851dfec5c2c6e3143f5d6923/1200w.png"
17+
/// \example archetypes/scalar_send_columns title="Multiple scalars in a single `send_columns` call" image="https://static.rerun.io/scalar_send_columns/b4bf172256f521f4851dfec5c2c6e3143f5d6923/1200w.png"
1818
table Scalar (
1919
"attr.rust.archetype_eager",
2020
"attr.rust.derive": "PartialEq",

crates/store/re_types/src/archetypes/scalar.rs

+35-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/snippets/INDEX.md

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/snippets/all/archetypes/scalar_send_columns.py

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/usr/bin/env python3
21
"""Use the `send_columns` API to send scalars over time in a single call."""
32

43
from __future__ import annotations

rerun_cpp/src/rerun/archetypes/scalar.hpp

+32-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rerun_py/rerun_sdk/rerun/archetypes/scalar.py

+30-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)