animrect.h
来自「爱可视605看PDF程式源代码, 基于APDF」· C头文件 代码 · 共 29 行
H
29 行
#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 + =
减小字号Ctrl + -
显示快捷键?