We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d541ab2 commit 8f56926Copy full SHA for 8f56926
pupil_src/shared_modules/calibration_routines/hmd_calibration.py
@@ -343,9 +343,9 @@ def toWorld1(p):
343
close_point_a,_ = math_helper.nearest_linepoint_to_point( point , line_a )
344
close_point_b,_ = math_helper.nearest_linepoint_to_point( point , line_b )
345
close_point_c,_ = math_helper.nearest_linepoint_to_point( point , line_c )
346
- points_a.append(close_point_a)
347
- points_b.append(close_point_b)
348
- points_c.append(close_point_c)
+ points_a.append(close_point_a.tolist())
+ points_b.append(close_point_b.tolist())
+ points_c.append(close_point_c.tolist())
349
350
351
# we need to take the sphere position into account
0 commit comments