first commit via git

This commit is contained in:
jomo
2014-05-16 23:04:40 +02:00
commit 9f1ed1fb66
15 changed files with 975 additions and 0 deletions

28
plotter.py Executable file
View File

@@ -0,0 +1,28 @@
#!/usr/bin/python
# this was going to be a PlotMe-like plugin "plotter"
# but it seems like PlotMe is still beeing developed, so we don't need our own.
import sys
x_plot_size = 3
z_plot_size = 3
padding = 1
def base_coords(x, z):
pid = plot_id(x, z)
return [pid[0] * (x_plot_size + padding), pid[1] * (z_plot_size + padding)]
def bounds(x, z):
base = base_coords(x, z)
return [base, [base[0] + x_plot_size, base[1] + z_plot_size]]
def plot_id(x, z):
return [x // (x_plot_size + padding), z // (z_plot_size + padding)]
x = int(sys.argv[1])
z = int(sys.argv[2])
print "id: %s" % plot_id(x, z)
print "base: %s" % base_coords(x, z)
print "bounds: %s" % bounds(x, z)