Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/render/camera.h
| Show First 20 Lines • Show All 41 Lines • ▼ Show 20 Lines | enum MotionPosition { | ||||
| /* Shutter opens at the current frame. */ | /* Shutter opens at the current frame. */ | ||||
| MOTION_POSITION_START, | MOTION_POSITION_START, | ||||
| /* Shutter is fully open at the current frame. */ | /* Shutter is fully open at the current frame. */ | ||||
| MOTION_POSITION_CENTER, | MOTION_POSITION_CENTER, | ||||
| /* Shutter closes at the current frame. */ | /* Shutter closes at the current frame. */ | ||||
| MOTION_POSITION_END, | MOTION_POSITION_END, | ||||
| }; | }; | ||||
| /* 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; | ||||
| /* depth of field */ | /* depth of field */ | ||||
| float focaldistance; | float focaldistance; | ||||
| Show All 9 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 | |||||