diff options
author | sfan5 <sfan5@live.de> | 2012-08-21 11:52:20 -0700 |
---|---|---|
committer | sfan5 <sfan5@live.de> | 2012-08-21 11:52:20 -0700 |
commit | 9ebe65fe7b7258e5f9c7c80366b96566fa6e3ac2 (patch) | |
tree | dec1c90bd244e8a48aec17f987506a75265a04e6 | |
parent | 15fa38b848c016f6b3404cd8428b2517a3e00984 (diff) | |
parent | bca93e8287de41ed797bb1a572cea340fb6e5370 (diff) | |
download | mesecons-9ebe65fe7b7258e5f9c7c80366b96566fa6e3ac2.tar mesecons-9ebe65fe7b7258e5f9c7c80366b96566fa6e3ac2.tar.gz mesecons-9ebe65fe7b7258e5f9c7c80366b96566fa6e3ac2.tar.bz2 mesecons-9ebe65fe7b7258e5f9c7c80366b96566fa6e3ac2.tar.xz mesecons-9ebe65fe7b7258e5f9c7c80366b96566fa6e3ac2.zip |
Merge pull request #31 from VanessaE/master
Tweak vertical wire stubs to help with Z-Fighting
-rw-r--r-- | mesecons/wires.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mesecons/wires.lua b/mesecons/wires.lua index bca5e88..3163495 100644 --- a/mesecons/wires.lua +++ b/mesecons/wires.lua @@ -48,10 +48,10 @@ box_zp = {-1/16, -.5, 1/16, 1/16, -.5+1/16, 8/16} box_xm = {-8/16, -.5, -1/16, -1/16, -.5+1/16, 1/16} box_zm = {-1/16, -.5, -8/16, 1/16, -.5+1/16, -1/16} -box_xpy = {.5-1/16, -.5+1/16, -1/16, .5, .5+1/16, 1/16} -box_zpy = {-1/16, -.5+1/16, .5-1/16, 1/16, .5+1/16, .5} -box_xmy = {-.5, -.5+1/16, -1/16, -.5+1/16, .5+1/16, 1/16} -box_zmy = {-1/16, -.5+1/16, -.5, 1/16, .5+1/16, -.5+1/16} +box_xpy = {.5-1/16, -.5+1/16, -1/16, .5, .4999+1/16, 1/16} +box_zpy = {-1/16, -.5+1/16, .5-1/16, 1/16, .4999+1/16, .5} +box_xmy = {-.5, -.5+1/16, -1/16, -.5+1/16, .4999+1/16, 1/16} +box_zmy = {-1/16, -.5+1/16, -.5, 1/16, .4999+1/16, -.5+1/16} for xp=0, 1 do for zp=0, 1 do |