File tree Expand file tree Collapse file tree 3 files changed +6
-7
lines changed Expand file tree Collapse file tree 3 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ cwd = "humble_ws"
71
71
cmd = " curl -L -C - -O https://storage.googleapis.com/rerun-example-datasets/carla_ros2.zip && unzip carla_ros2.zip"
72
72
cwd = " humble_ws/install/rerun_bridge/share/rerun_bridge"
73
73
outputs = [" humble_ws/install/rerun_bridge/share/rerun_bridge/carla_ros2" ]
74
- depends_on = [" build" ]
74
+ depends_on = [" build" ]
75
75
76
76
[tasks .carla_example ]
77
77
cmd = " bash -c 'source ./install/local_setup.bash && ros2 launch rerun_bridge carla_example.launch'"
@@ -110,7 +110,7 @@ cwd = "humble_ws"
110
110
# https://github.com/prefix-dev/pixi/issues/1163
111
111
112
112
[tasks .rerun_viewer ]
113
- cmd = " pip install rerun-sdk==0.15 "
113
+ cmd = " pip install rerun-sdk==0.16 "
114
114
115
115
[tasks .rerun_urdf_loader ]
116
116
cmd = " pip install git+https://github.com/rerun-io/rerun-loader-python-example-urdf.git"
Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ if(NOT DEFINED CMAKE_CXX_STANDARD)
6
6
endif ()
7
7
8
8
# Avoid warning about CMP0135
9
- if (CMAKE_VERSION VERSION_GREATER_EQUAL "3.24.0" )
10
- cmake_policy (SET CMP0135 NEW )
9
+ if (CMAKE_VERSION VERSION_GREATER_EQUAL "3.24.0" )
10
+ cmake_policy (SET CMP0135 NEW )
11
11
endif ()
12
12
13
13
find_package (ament_cmake REQUIRED )
@@ -22,7 +22,7 @@ find_package(OpenCV REQUIRED)
22
22
find_package (yaml-cpp REQUIRED )
23
23
24
24
include (FetchContent )
25
- FetchContent_Declare (rerun_sdk URL https://github.com/rerun-io/rerun/releases/download/0.15.1 /rerun_cpp_sdk.zip )
25
+ FetchContent_Declare (rerun_sdk URL https://github.com/rerun-io/rerun/releases/download/0.16.0 /rerun_cpp_sdk.zip )
26
26
FetchContent_MakeAvailable (rerun_sdk )
27
27
28
28
# setup targets (has to be done before ament_package call)
@@ -45,6 +45,5 @@ ament_export_include_directories(include)
45
45
ament_export_libraries (${PROJECT_NAME} )
46
46
ament_package ()
47
47
48
-
49
48
install (DIRECTORY launch DESTINATION share/${PROJECT_NAME} )
50
49
install (TARGETS visualizer DESTINATION lib/${PROJECT_NAME} )
Original file line number Diff line number Diff line change @@ -179,7 +179,7 @@ void RerunLoggerNode::_read_yaml_config(std::string yaml_path) {
179
179
extra_transform3d[" transform" ][2 ].as <float >(),
180
180
extra_transform3d[" transform" ][6 ].as <float >(),
181
181
extra_transform3d[" transform" ][10 ].as <float >()};
182
- _rec.log_timeless (
182
+ _rec.log_static (
183
183
extra_transform3d[" entity_path" ].as <std::string>(),
184
184
rerun::Transform3D (
185
185
rerun::Vec3D (translation),
You can’t perform that action at this time.
0 commit comments