Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/render/camera.h
| Show First 20 Lines • Show All 49 Lines • ▼ Show 20 Lines | public: | ||||
| /* Specifies rolling shutter effect. */ | /* Specifies rolling shutter effect. */ | ||||
| enum RollingShutterType { | enum RollingShutterType { | ||||
| /* No rolling shutter effect. */ | /* No rolling shutter effect. */ | ||||
| ROLLING_SHUTTER_NONE = 0, | ROLLING_SHUTTER_NONE = 0, | ||||
| /* Sensor is being scanned vertically from top to bottom. */ | /* Sensor is being scanned vertically from top to bottom. */ | ||||
| ROLLING_SHUTTER_TOP, | ROLLING_SHUTTER_TOP, | ||||
| }; | }; | ||||
| /* Stereo Type */ | |||||
| enum StereoEye { | |||||
| STEREO_NONE, | |||||
| STEREO_LEFT, | |||||
| STEREO_RIGHT, | |||||
| }; | |||||
| /* motion blur */ | /* motion blur */ | ||||
| float shuttertime; | float shuttertime; | ||||
| MotionPosition motion_position; | MotionPosition motion_position; | ||||
| float shutter_curve[RAMP_TABLE_SIZE]; | float shutter_curve[RAMP_TABLE_SIZE]; | ||||
| size_t shutter_table_offset; | size_t shutter_table_offset; | ||||
| /* ** Rolling shutter effect. ** */ | /* ** Rolling shutter effect. ** */ | ||||
| /* Defines rolling shutter effect type. */ | /* Defines rolling shutter effect type. */ | ||||
| Show All 17 Lines | public: | ||||
| PanoramaType panorama_type; | PanoramaType panorama_type; | ||||
| float fisheye_fov; | float fisheye_fov; | ||||
| float fisheye_lens; | float fisheye_lens; | ||||
| float latitude_min; | float latitude_min; | ||||
| float latitude_max; | float latitude_max; | ||||
| float longitude_min; | float longitude_min; | ||||
| float longitude_max; | float longitude_max; | ||||
| /* panorama stereo */ | |||||
| StereoEye stereo_eye; | |||||
| bool use_spherical_stereo; | |||||
| float interocular_distance; | |||||
| float convergence_distance; | |||||
| /* anamorphic lens bokeh */ | /* anamorphic lens bokeh */ | ||||
| float aperture_ratio; | float aperture_ratio; | ||||
| /* sensor */ | /* sensor */ | ||||
| float sensorwidth; | float sensorwidth; | ||||
| float sensorheight; | float sensorheight; | ||||
| /* clipping */ | /* clipping */ | ||||
| ▲ Show 20 Lines • Show All 72 Lines • Show Last 20 Lines | |||||