@@ -226,15 +226,15 @@ class IMU(RigidSensorOptionsMixin, NoisySensorOptionsMixin, SensorOptions):
226226 mag_random_walk : tuple[float, float, float]
227227 The standard deviation of the bias drift for each axis of the magnetometer.
228228 debug_acc_color : float, optional
229- The rgba color of the debug acceleration arrow. Defaults to (0 .0, 1 .0, 1 .0, 0.5 ).
229+ The rgba color of the debug acceleration arrow. Defaults to (1 .0, 0 .0, 0 .0, 0.6 ).
230230 debug_acc_scale: float, optional
231231 The scale factor for the debug acceleration arrow. Defaults to 0.01.
232232 debug_gyro_color : float, optional
233- The rgba color of the debug gyroscope arrow. Defaults to (1 .0, 1.0, 0.0, 0.5 ).
233+ The rgba color of the debug gyroscope arrow. Defaults to (0 .0, 1.0, 0.0, 0.6 ).
234234 debug_gyro_scale: float, optional
235235 The scale factor for the debug gyroscope arrow. Defaults to 0.01.
236236 debug_mag_color : float, optional
237- The rgba color of the debug magnetometer arrow. Defaults to (1 .0, 1 .0, 0 .0, 0.5 ).
237+ The rgba color of the debug magnetometer arrow. Defaults to (0 .0, 0 .0, 1 .0, 0.6 ).
238238 debug_mag_scale: float, optional
239239 The scale factor for the debug magnetometer arrow. Defaults to 0.01.
240240 """
@@ -261,12 +261,12 @@ class IMU(RigidSensorOptionsMixin, NoisySensorOptionsMixin, SensorOptions):
261261 mag_random_walk : MaybeTuple3FType = 0.0
262262 magnetic_field : MaybeTuple3FType = (0.0 , 0.0 , 0.5 )
263263
264- debug_acc_color : tuple [float , float , float , float ] = (0 .0 , 1 .0 , 1 .0 , 0.5 )
264+ debug_acc_color : tuple [float , float , float , float ] = (1 .0 , 0 .0 , 0 .0 , 0.6 )
265265 debug_acc_scale : float = 0.01
266- debug_gyro_color : tuple [float , float , float , float ] = (1 .0 , 1.0 , 0.0 , 0.5 )
266+ debug_gyro_color : tuple [float , float , float , float ] = (0 .0 , 1.0 , 0.0 , 0.6 )
267267 debug_gyro_scale : float = 0.01
268- debug_mag_color : tuple [float , float , float , float ] = (0.0 , 0.0 , 1.0 , 0.5 )
269- debug_mag_scale : float = 2.0
268+ debug_mag_color : tuple [float , float , float , float ] = (0.0 , 0.0 , 1.0 , 0.6 )
269+ debug_mag_scale : float = 0.5
270270
271271 def model_post_init (self , _ ):
272272 self ._validate_cross_axis_coupling (self .acc_cross_axis_coupling )
0 commit comments