Skip to content
Snippets Groups Projects
Commit 9c05b14f authored by Recolic Keghart's avatar Recolic Keghart
Browse files

ed

parent 9c0855ce
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,8 @@
#
#quickmap.GetMap(xrc, yrc, line=True, maxXPower=16, inverseK=True)
#
#import virtualtype
import virtualtype
virtualtype._type('knY58btMJ8MU1J9k')
#virtualtype.virtual_type_array([99.78,8.26,99.82,9.86,99.72,8.4,99.7,9.9,99.72,8.42,99.72,9.88,99.68,8.34,99.72,9.74,99.7,8.2,99.86,9.82])
#virtualtype.virtual_type_array([42.5,42.2,41.9,41.5,41.2,40.9,40.5,40.3,40.0,39.7])
......
import quickmap
import math, sys
with open(sys.argv[1]) as f:
cont = f.read()
xrc = []
yrc = []
for line in cont.split('\n'):
if line == '':
continue
x, y = line.split(' ')
xrc.append(float(x)+2)
yrc.append((float(y)))
#yrc.append(math.log2(float(y)))
ylog = [(yrc[int(index/2)]+yrc[int((index+1)/2)])/2/ele for index, ele in enumerate(yrc)]
ylog = [math.log2(i) for i in ylog]
#ylog=yrc
quickmap.GetMap(xrc,ylog,smoothLine=False)
#quickmap.GetMap(xrc,ylog,polyLine=True,poly_inverseK=True,poly_maxXPower=10)
import quickmap
import sys
with open(sys.argv[1]) as f:
cont = f.read()
barr = []
for line in cont.split('\n'):
if line == '':
continue
barr.append(float(line))
aarr = [i for i in range(len(barr))]
quickmap.GetMap(aarr, barr)
#!/usr/bin/env python3
# Use this script with https://recolic.net/phy and https://recolic.net/phy2
# to avoid typing fucked numbers into page by hand.
# Fuck the chinese shits who prevent you from pasting password.
# E.x. Alibaba bitch
from pykeyboard import PyKeyboard
import time
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment