diff options
author | epoch <epoch@thebackupbox.net> | 2020-10-10 00:00:55 -0500 |
---|---|---|
committer | epoch <epoch@thebackupbox.net> | 2020-10-10 00:00:55 -0500 |
commit | fe9ad894000ff986cd642d23ac4762e97d5b1ccc (patch) | |
tree | 1e253ac02dc7d3339b60ca68d9bfca24cbd3ef7e /bin | |
parent | 19feecae5124e5eb4c8a2f2dfd300e94e59b9d9f (diff) | |
parent | 4982876f0d021e4637f6db500063169477fe7289 (diff) | |
download | hackvr-fe9ad894000ff986cd642d23ac4762e97d5b1ccc.tar.gz hackvr-fe9ad894000ff986cd642d23ac4762e97d5b1ccc.zip |
Merge branch 'master' of ssh://batou.thebackupbox.net:65432/hackvr
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/map2globe.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/bin/map2globe.py b/bin/map2globe.py index cb49675..1a50ea5 100755 --- a/bin/map2globe.py +++ b/bin/map2globe.py @@ -1,4 +1,4 @@ -#!/usr/bin/python3.6 +#!/usr/bin/python3 import sys import math @@ -49,9 +49,6 @@ while(1): break if(lat and lon and x and y and z and plat and plon and px and py and pz): #if the previouses exist print("{} addshape 2 2 {} {} {} {} {} {}".format(name,x,y,z,px,py,pz)) - print("{} rotate 0 {} 0".format(name,str(rotation))) - rotation+=1 - rotation%=360 #set previouses to currents (plat,plon,px,py,pz)=(lat,lon,x,y,z) |