Go to the source code of this file.
|
JobRegistrar | sRegisterOrtho ("orthographic camera", "camera", "rendering", [](const std::string &name) { return makeAuto< OrthoCameraJob >(name);}, "Creates an orthographic camera") |
|
JobRegistrar | sRegisterPerspective ("perspective camera", "camera", "rendering", [](const std::string &name) { return makeAuto< PerspectiveCameraJob >(name);}, "Creates a perspective (pinhole) camera.") |
|
JobRegistrar | sRegisterFisheye ("fisheye camera", "camera", "rendering", [](const std::string &name) { return makeAuto< FisheyeCameraJob >(name);}, "Creates a fisheye camera.") |
|
◆ sRegisterFisheye
JobRegistrar sRegisterFisheye("fisheye camera", "camera", "rendering",[](const std::string &name) { return makeAuto< FisheyeCameraJob >(name);}, "Creates a fisheye camera.") |
( |
"fisheye camera" |
, |
|
|
"camera" |
, |
|
|
"rendering" |
, |
|
|
[] (const std::string &name) { return makeAuto< FisheyeCameraJob >(name);} |
, |
|
|
"Creates a fisheye camera." |
|
|
) |
| |
◆ sRegisterOrtho
JobRegistrar sRegisterOrtho("orthographic camera", "camera", "rendering",[](const std::string &name) { return makeAuto< OrthoCameraJob >(name);}, "Creates an orthographic camera") |
( |
"orthographic camera" |
, |
|
|
"camera" |
, |
|
|
"rendering" |
, |
|
|
[] (const std::string &name) { return makeAuto< OrthoCameraJob >(name);} |
, |
|
|
"Creates an orthographic camera" |
|
|
) |
| |
◆ sRegisterPerspective
JobRegistrar sRegisterPerspective("perspective camera", "camera", "rendering",[](const std::string &name) { return makeAuto< PerspectiveCameraJob >(name);}, "Creates a perspective (pinhole) camera.") |
( |
"perspective camera" |
, |
|
|
"camera" |
, |
|
|
"rendering" |
, |
|
|
[] (const std::string &name) { return makeAuto< PerspectiveCameraJob >(name);} |
, |
|
|
"Creates a perspective (pinhole) camera." |
|
|
) |
| |