File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed
Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -326,7 +326,7 @@ class Camera(Enum):
326326 """Fisheye (equisolid) camera with depth of field simulation.
327327
328328 This camera renders a fisheye lens distortion of perspective lines. It
329- also focuses on a sphere rather than on a plane like ThinLens camera.
329+ also focuses on a sphere rather than on a plane like thin lens camera.
330330 """
331331
332332 ThinLensChroma = 5
@@ -344,6 +344,14 @@ class Camera(Enum):
344344
345345 CustomProj = 98
346346 """Custom projection camera.
347+
348+ Ray angles are defined with a 2D texture ``[height, width, 2]`` composed of angles
349+ ``[horizontal, vertical]`` w.r.t. the camera axis. Angles should be provided in radians,
350+ and normalized so the value ``1.0`` is corresponding to ``pi``. Negative angles are to
351+ the left (horizontal) and down (vertical) w.r.t. the camera axis.
352+
353+ Exact values from the texture are used if the render size and texture size are the
354+ same. Otherwise ray angles are interpolated.
347355 """
348356
349357 TexTest = 99
You can’t perform that action at this time.
0 commit comments