Skip to content

Commit 5bfc25f

Browse files
committed
improve depthmeter comment
1 parent 8df291c commit 5bfc25f

File tree

10 files changed

+13
-13
lines changed

10 files changed

+13
-13
lines changed

crates/re_types/definitions/rerun/archetypes/depth_image.fbs

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ table DepthImage (
3535
/// For instance: with uint16, perhaps meter=1000 which would mean you have millimeter precision
3636
/// and a range of up to ~65 meters (2^16 / 1000).
3737
///
38-
/// Note that the effect on 2D views is what physical depth values are shown when interacting with the image,
38+
/// Note that the only effect on 2D views is the physical depth values shown when hovering the image.
3939
/// In 3D views on the other hand, this affects where the points of the point cloud are placed.
4040
meter: rerun.components.DepthMeter ("attr.rerun.component_optional", nullable, order: 3100);
4141

crates/re_types/definitions/rerun/components/depth_meter.fbs

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ namespace rerun.components;
1515
/// For instance, if a depth map uses millimeters and the world uses meters,
1616
/// this value would be `1000`.
1717
///
18-
/// Note that the effect on 2D views is what physical depth values are shown when interacting with the image,
18+
/// Note that the only effect on 2D views is the physical depth values shown when hovering the image.
1919
/// In 3D views on the other hand, this affects where the points of the point cloud are placed.
2020
struct DepthMeter (
2121
"attr.python.aliases": "float",

crates/re_types/src/archetypes/depth_image.rs

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

crates/re_types/src/components/depth_meter.rs

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

crates/re_viewer/src/reflection/mod.rs

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

docs/content/reference/types/components/depth_meter.md

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

rerun_cpp/src/rerun/archetypes/depth_image.hpp

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

rerun_cpp/src/rerun/components/depth_meter.hpp

+1-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/depth_image.py

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

rerun_py/rerun_sdk/rerun/components/depth_meter.py

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

0 commit comments

Comments
 (0)