61b1d34e225a76d5cf40c35b8b0e0ba846a687e5
[platform/core/uifw/lottie-player.git] / src / vector / vpathmesure.h
1 #ifndef VPATHMESURE_H
2 #define VPATHMESURE_H
3
4 #include "vpath.h"
5
6 V_BEGIN_NAMESPACE
7
8 class VPathMesure {
9 public:
10     void  setOffset(float sp, float ep);
11     VPath trim(const VPath &path);
12
13 private:
14     float startOffset{0.0f};
15     float endOffset{1.0f};
16 };
17
18 V_END_NAMESPACE
19
20 #endif  // VPATHMESURE_H