tools: Fix change_landing script

This commit is contained in:
Arthur Golubtsov
2019-11-18 11:33:25 +03:00
parent 14ead33282
commit 7127c1e4e9

View File

@@ -53,8 +53,8 @@ def parse_positions_file(filename):
n_str = pos_file.readline()[:-1].split(' ')
nx = int(n_str[0])
ny = int(n_str[1])
dx = int(n_str[2])
dy = int(n_str[3])
dx = float(n_str[2])
dy = float(n_str[3])
pos_str = pos_file.readline()[:-1].split(' ')
for i in range(3):
pos.append(float(pos_str[i]))