Skip to content

Commit c80baf5

Browse files
committed
adapt to new name
1 parent 2929ba4 commit c80baf5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

crates/store/re_data_loader/src/loader_urdf.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ fn log_robot(
288288
store_id,
289289
entity_path.clone(),
290290
timepoint,
291-
&CoordinateFrame::update_fields().with_frame_id(urdf_tree.root.name.clone()),
291+
&CoordinateFrame::update_fields().with_frame(urdf_tree.root.name.clone()),
292292
)?;
293293
// TODO: Do we always need to do that?
294294
send_archetype(
@@ -378,7 +378,7 @@ fn log_joint(
378378
store_id,
379379
joint_path.clone(),
380380
timepoint,
381-
&CoordinateFrame::update_fields().with_frame_id(parent.link.clone()),
381+
&CoordinateFrame::update_fields().with_frame(parent.link.clone()),
382382
)?;
383383
// Send the joint origin, i.e. the default transform from parent link to child link.
384384
send_transform(
@@ -534,7 +534,7 @@ fn log_link(
534534
store_id,
535535
link_entity.clone(),
536536
timepoint,
537-
&CoordinateFrame::update_fields().with_frame_id(link.name.clone()),
537+
&CoordinateFrame::update_fields().with_frame(link.name.clone()),
538538
)?;
539539

540540
for (i, visual) in visual.iter().enumerate() {
@@ -566,7 +566,7 @@ fn log_link(
566566
visual_name,
567567
)?;
568568

569-
let coordinate_frame = CoordinateFrame::update_fields().with_frame_id(link.name.clone());
569+
let coordinate_frame = CoordinateFrame::update_fields().with_frame(link.name.clone());
570570
send_archetype(
571571
tx,
572572
store_id,
@@ -605,7 +605,7 @@ fn log_link(
605605
collision_name,
606606
)?;
607607

608-
let coordinate_frame = CoordinateFrame::update_fields().with_frame_id(link.name.clone());
608+
let coordinate_frame = CoordinateFrame::update_fields().with_frame(link.name.clone());
609609
send_archetype(
610610
tx,
611611
store_id,

0 commit comments

Comments
 (0)