From 94accc238a61fbef836cb98ddfd704300f126f78 Mon Sep 17 00:00:00 2001 From: psrcek Date: Wed, 3 Aug 2016 23:48:15 +0200 Subject: Delete plotter.py We have https://github.com/RedstonerServer/Parcels now. --- plotter.py | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 plotter.py diff --git a/plotter.py b/plotter.py deleted file mode 100644 index d598554..0000000 --- a/plotter.py +++ /dev/null @@ -1,30 +0,0 @@ -#!/usr/bin/python - -""" -*Very basic* start of a custom plot-plugin like PlotMe -on hold because the PlotMe developer continued to develop PlotMe -""" - -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) -- cgit v1.2.3