Differential D8466 Diff 27507 source/blender/compositor/operations/COM_MovieClipAttributeOperation.h
Changeset View
Changeset View
Standalone View
Standalone View
source/blender/compositor/operations/COM_MovieClipAttributeOperation.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 2011, Blender Foundation. | * Copyright 2011, Blender Foundation. | ||||
| */ | */ | ||||
| #ifndef __COM_MOVIECLIPATTRIBUTEOPERATION_H__ | #pragma once | ||||
| #define __COM_MOVIECLIPATTRIBUTEOPERATION_H__ | |||||
| #include "COM_NodeOperation.h" | #include "COM_NodeOperation.h" | ||||
| #include "DNA_movieclip_types.h" | #include "DNA_movieclip_types.h" | ||||
| typedef enum MovieClipAttribute { | typedef enum MovieClipAttribute { | ||||
| MCA_SCALE, | MCA_SCALE, | ||||
| MCA_X, | MCA_X, | ||||
| MCA_Y, | MCA_Y, | ||||
| MCA_ANGLE, | MCA_ANGLE, | ||||
| Show All 36 Lines | public: | ||||
| { | { | ||||
| this->m_attribute = attribute; | this->m_attribute = attribute; | ||||
| } | } | ||||
| void setInvert(bool invert) | void setInvert(bool invert) | ||||
| { | { | ||||
| this->m_invert = invert; | this->m_invert = invert; | ||||
| } | } | ||||
| }; | }; | ||||
| #endif | |||||