Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDalai Felinto <dfelinto@gmail.com>2012-11-09 13:11:24 +0400
committerDalai Felinto <dfelinto@gmail.com>2012-11-09 13:11:24 +0400
commit03cc3b94c94c38767802bccac4e9384ab704065a (patch)
tree7ba06b3851597d75a77f45053b2cfd35ef0d0f42 /intern/cycles/blender/addon/enums.py
parentffbf0a1b12ae840f5fd5a21b3663743ee9beb26c (diff)
Fisheye Equidistant Lens algorith bugfix
r = lens * theta Thanks for Adriano Oliveira for reporting this and chasing down the right formula. Now fulldome works no longer need to use equisolid + a specific lens+sensor size. And happy birthday to me. And yes, that's how I celebrate it ;)
Diffstat (limited to 'intern/cycles/blender/addon/enums.py')
-rw-r--r--intern/cycles/blender/addon/enums.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/intern/cycles/blender/addon/enums.py b/intern/cycles/blender/addon/enums.py
index a98a6aab4c4..82b48973ca1 100644
--- a/intern/cycles/blender/addon/enums.py
+++ b/intern/cycles/blender/addon/enums.py
@@ -57,8 +57,7 @@ aperture_types = (
panorama_types = (
('EQUIRECTANGULAR', "Equirectangular", "Render the scene with a spherical camera, also known as Lat Long panorama"),
- ('FISHEYE_EQUIDISTANT', "Fisheye Equidistant", "Ignore the sensor dimensions"),
+ ('FISHEYE_EQUIDISTANT', "Fisheye Equidistant", "Ideal for fulldomes, ignore the sensor dimensions"),
('FISHEYE_EQUISOLID', "Fisheye Equisolid",
- "Similar to most fisheye modern lens, takes sensor dimensions into consideration "
- "(for fulldomes use it with a square sensor ratio)"),
+ "Similar to most fisheye modern lens, takes sensor dimensions into consideration"),
)