From 6492ba6b4107a4da228e18db4fc5fc871bfb0579 Mon Sep 17 00:00:00 2001 From: epoch Date: Wed, 17 Aug 2022 21:34:02 -0500 Subject: updated README to show that everything that got deleted went to an -extras repo. also, hackvr script updated to be better bash --- share/hackvr/meshes/radial_to_cartesian.py | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100755 share/hackvr/meshes/radial_to_cartesian.py (limited to 'share/hackvr/meshes/radial_to_cartesian.py') diff --git a/share/hackvr/meshes/radial_to_cartesian.py b/share/hackvr/meshes/radial_to_cartesian.py deleted file mode 100755 index 4f4370a..0000000 --- a/share/hackvr/meshes/radial_to_cartesian.py +++ /dev/null @@ -1,16 +0,0 @@ -#!/usr/bin/python -### -### so... instead of x,y,z then more x,y,z we take x,y,z then x,y,z rotations and a distance. -### so input would look like... 0 0 0 0 0 90 10 -### and the output should be... addshape 0 2 0 0 0 0 0 10 -import sys -import math -x=int(sys.argv[1]); -y=int(sys.argv[2]); -z=int(sys.argv[3]); -d=int(sys.argv[4]); -r=int(sys.argv[5]); -#print("{} {} {}\n".format(x, y, z)) -x=math.sin(d * 2.0 * math.pi / 360.0)*r -y=math.cos(d * 2.0 * math.pi / 360.0)*r -print("{} {} 0".format(x,y)) -- cgit v1.2.3