You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
416 B
C++
15 lines
416 B
C++
#pragma once
|
|
#include "TransformMotiveGraphDrawer.h"
|
|
#include <atltypes.h>
|
|
|
|
//画外包矩形,和变形的选中的图元。
|
|
class ScaleMotionGraphDrawer : public TransformMotiveGraphDrawer
|
|
{
|
|
public:
|
|
ScaleMotionGraphDrawer();
|
|
virtual void FirstDraw(CDC * pDC, Gdiplus::Matrix * matrix, int mouseX, int mouseY);
|
|
virtual void Draw(CDC * pDC, Gdiplus::Matrix * matrix, int mouseX, int mouseY);
|
|
virtual void Erease(CDC * pDC);
|
|
};
|
|
|