AnyCAD C++ API  2018
 全部  命名空间 文件 函数 变量 类型定义 枚举 枚举值 友元 宏定义 
APITransformAnimator.h
浏览该文件的文档.
1 //Public API. Powered by AnyCAD.
2 
3 #ifndef _APITransformAnimator_H_
4 #define _APITransformAnimator_H_
5 
6 #include "APIObjectDef.h"
7 
8 #include "APIAnimator.h"
9 
10 namespace AnyCAD{ namespace API
11 {
12  class RenderableInstance;
21  : public Animator
22  {
24  public:
29  Vector3 GetDirection () const;
34  void SetDirection (const Vector3& val) ;
39  double GetDistance () const;
44  void SetDistance (double val) ;
49  double GetStep () const;
54  void SetStep (double val) ;
60  void SetNextTypeAnimator (const String& propertyId, const String& propertyValue) ;
65  virtual bool ActiveAnimation (const String& animation) ;
70  virtual void EnableLoop (bool bLoop) ;
75  virtual bool IsLoopEnabled () const;
76  };//TransformAnimator;
77 }}//API
78 
79 #endif //_APITransformAnimator_H_
#define AnyPlatformAPI_API
Definition: AnyPlatformAPI.h:8
std::string String
Definition: APIString.h:10
动画操作器
Definition: APIAnimator.h:17
Point or vector.
Definition: APIMath.h:37
#define DECLARE_APISUPER(className, super)
Definition: APIObjectDef.h:33
The transform animator.
Definition: APITransformAnimator.h:20