| 21 | using namespace openshot; |
| 22 | |
| 23 | SphericalProjection::SphericalProjection() |
| 24 | : yaw(0.0), pitch(0.0), roll(0.0), fov(90.0), in_fov(180.0), |
| 25 | projection_mode(0), invert(0), input_model(INPUT_EQUIRECT), interpolation(3) |
| 26 | { |
| 27 | init_effect_details(); |
| 28 | } |
| 29 | |
| 30 | SphericalProjection::SphericalProjection(Keyframe new_yaw, Keyframe new_pitch, |
| 31 | Keyframe new_roll, Keyframe new_fov) |
nothing calls this directly
no outgoing calls
no test coverage detected