Selaa lähdekoodia

Partial panorama default cube size fix

Change computation of cube size - taking haov into account
pull/632/head
matejsoukup 6 vuotta sitten
committed by Matthew Petroff
vanhempi
commit
a99d4eaa1c
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. +1
    -1
      utils/multires/generate.py

+ 1
- 1
utils/multires/generate.py Näytä tiedosto

@@ -121,7 +121,7 @@ if vaov == -1:
if args.cubeSize != 0:
cubeSize = args.cubeSize
else:
cubeSize = 8 * int(origWidth / math.pi / 8)
cubeSize = 8 * int((360 / haov) * origWidth / math.pi / 8)
tileSize = min(args.tileSize, cubeSize)
levels = int(math.ceil(math.log(float(cubeSize) / tileSize, 2))) + 1
origHeight = str(origHeight)


Ladataan…
Peruuta
Tallenna