Skip to content

Commit 8f56926

Browse files
committed
another bugfix.
1 parent d541ab2 commit 8f56926

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pupil_src/shared_modules/calibration_routines/hmd_calibration.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -343,9 +343,9 @@ def toWorld1(p):
343343
close_point_a,_ = math_helper.nearest_linepoint_to_point( point , line_a )
344344
close_point_b,_ = math_helper.nearest_linepoint_to_point( point , line_b )
345345
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)
346+
points_a.append(close_point_a.tolist())
347+
points_b.append(close_point_b.tolist())
348+
points_c.append(close_point_c.tolist())
349349

350350

351351
# we need to take the sphere position into account

0 commit comments

Comments
 (0)