fix scan transformation for y° = 0

This commit is contained in:
Tim Wundenberg
2021-08-01 20:05:15 +02:00
parent 419a468dc5
commit ab4f98f76c
6 changed files with 56 additions and 28 deletions

View File

@@ -49,10 +49,10 @@ export default {
axios
.put(globals.API_URL + 'pointcloudinfo', pointCloudInfo)
.then(response => {
setTimeout(() => {
setTimeout(() => {
commit('UPDATE_PC', { action: "update", data: response.data });
commit('SET_LOADING', false);
}, 80)();
}, 80);
}).catch(() => {
commit('SET_LOADING', false)
})