Differential D8466 Diff 27507 source/blender/compositor/operations/COM_PlaneDistortCommonOperation.h
Changeset View
Changeset View
Standalone View
Standalone View
source/blender/compositor/operations/COM_PlaneDistortCommonOperation.h
| Show All 10 Lines | |||||
| * | * | ||||
| * You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU General Public License | ||||
| * along with this program; if not, write to the Free Software Foundation, | * along with this program; if not, write to the Free Software Foundation, | ||||
| * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||||
| * | * | ||||
| * Copyright 2013, Blender Foundation. | * Copyright 2013, Blender Foundation. | ||||
| */ | */ | ||||
| #ifndef __COM_PLANEDISTORTCOMMONOPERATION_H__ | #pragma once | ||||
| #define __COM_PLANEDISTORTCOMMONOPERATION_H__ | |||||
| #include <string.h> | #include <string.h> | ||||
| #include "COM_NodeOperation.h" | #include "COM_NodeOperation.h" | ||||
| #include "DNA_movieclip_types.h" | #include "DNA_movieclip_types.h" | ||||
| #include "DNA_tracking_types.h" | #include "DNA_tracking_types.h" | ||||
| ▲ Show 20 Lines • Show All 63 Lines • ▼ Show 20 Lines | void setMotionBlurSamples(int samples) | ||||
| BLI_assert(samples <= PLANE_DISTORT_MAX_SAMPLES); | BLI_assert(samples <= PLANE_DISTORT_MAX_SAMPLES); | ||||
| this->m_motion_blur_samples = samples; | this->m_motion_blur_samples = samples; | ||||
| } | } | ||||
| void setMotionBlurShutter(float shutter) | void setMotionBlurShutter(float shutter) | ||||
| { | { | ||||
| this->m_motion_blur_shutter = shutter; | this->m_motion_blur_shutter = shutter; | ||||
| } | } | ||||
| }; | }; | ||||
| #endif | |||||