diff options
| author | epoch <epoch@thebackupbox.net> | 2020-04-30 05:52:02 -0500 | 
|---|---|---|
| committer | epoch <epoch@thebackupbox.net> | 2020-04-30 05:52:02 -0500 | 
| commit | f11b758ec7cf1f2d428cec0499d62b4b249d9bcf (patch) | |
| tree | 26f218d71dddb02bd9a2796f8ef34267afeb5c3a /share/hackvr | |
| parent | e4704318327aec71a584571e80b6163988cdf6b8 (diff) | |
| download | hackvr-f11b758ec7cf1f2d428cec0499d62b4b249d9bcf.tar.gz hackvr-f11b758ec7cf1f2d428cec0499d62b4b249d9bcf.zip | |
fixed color to "gold" (yellow) and 16-sided looks better and is a nice power of 2 number
Diffstat (limited to 'share/hackvr')
| -rwxr-xr-x | share/hackvr/examples/dothack/chaosgate.py | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/share/hackvr/examples/dothack/chaosgate.py b/share/hackvr/examples/dothack/chaosgate.py index 56bf25d..b1cea43 100755 --- a/share/hackvr/examples/dothack/chaosgate.py +++ b/share/hackvr/examples/dothack/chaosgate.py @@ -6,11 +6,11 @@ def fp(p):      return " {} {} {}".format(p[0],p[1],p[2])  def print_rect(r): -    print("gate addshape 4 4 {} {} {} {}".format(fp(r[0]),fp(r[1]),fp(r[2]),fp(r[3]))) +    print("gate addshape 3 4 {} {} {} {}".format(fp(r[0]),fp(r[1]),fp(r[2]),fp(r[3])))  d=1 -sides = 12.0 +sides = 16.0  step = 360.0/sides  rot=0.0  zoff = 0.0 | 
