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.
|
|
|
|
|
#pragma once
|
|
|
|
|
|
#include "TransformMotiveGraphDrawer.h"
|
|
|
|
|
|
#include <atltypes.h>
|
|
|
|
|
|
|
|
|
|
|
|
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>,<2C>ͱ<EFBFBD><CDB1>ε<EFBFBD>ѡ<EFBFBD>е<EFBFBD>ͼԪ<CDBC><D4AA>
|
|
|
|
|
|
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);
|
|
|
|
|
|
};
|
|
|
|
|
|
|