📄 animrect.h
字号:
#ifndef ANIMRECT_H#define ANIMRECT_H#include <qrect.h>class AnimRect { public: AnimRect(); void set(const QRect &a, const QRect &b, int frames); QRect nextFrame(); QRect currentFrame() const; QRect nextHull() const; bool framesLeft() const; QRect lastFrame() const; private: QRect m_a, m_b; int m_frames, m_actframe; QRect calcFrame(int frame) const;};#endif // ANIMRECT_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -