abreza commited on
Commit
7aaae2f
·
1 Parent(s): c3b6f2a
Files changed (1) hide show
  1. visualization/logger.py +2 -3
visualization/logger.py CHANGED
@@ -151,8 +151,8 @@ class SimulationLogger:
151
  "world/helper_keyframes",
152
  rr.Points3D(
153
  helper_positions,
 
154
  colors=np.full((len(helper_positions), 4), [1.0, 1.0, 0.0, 1.0]),
155
- radii=np.full(len(helper_positions), 10)
156
  ),
157
  timeless=True
158
  )
@@ -178,8 +178,7 @@ class SimulationLogger:
178
  image_from_camera=self.K,
179
  width=1920,
180
  height=1080,
181
- ),
182
- timeless=True
183
  )
184
 
185
  except Exception as e:
 
151
  "world/helper_keyframes",
152
  rr.Points3D(
153
  helper_positions,
154
+ radii=np.full(len(helper_positions), 10.0),
155
  colors=np.full((len(helper_positions), 4), [1.0, 1.0, 0.0, 1.0]),
 
156
  ),
157
  timeless=True
158
  )
 
178
  image_from_camera=self.K,
179
  width=1920,
180
  height=1080,
181
+ )
 
182
  )
183
 
184
  except Exception as e: