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 "commandbase.h"
|
|
|
|
|
|
|
|
|
|
//<2F><EFBFBD>Բ
|
|
|
|
|
class CCommandModifiCircle :
|
|
|
|
|
public CCommandBase
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
CCommandModifiCircle(void);
|
|
|
|
|
~CCommandModifiCircle(void);
|
|
|
|
|
virtual CString GetStr(){return "<EFBFBD><EFBFBD>circle";};
|
|
|
|
|
virtual void ExcuteExt();
|
|
|
|
|
virtual void UndoExt();
|
|
|
|
|
void SetPar(double Radius,int EdgeCnt,bool b);
|
|
|
|
|
private:
|
|
|
|
|
void ReCreatObj(bool bExcute);
|
|
|
|
|
private:
|
|
|
|
|
double m_OldRadius;//<2F>뾶
|
|
|
|
|
int m_OldEdgeCnt;//<2F><><EFBFBD><EFBFBD>
|
|
|
|
|
|
|
|
|
|
double m_Radius;//<2F>뾶
|
|
|
|
|
int m_EdgeCnt;//<2F><><EFBFBD><EFBFBD>
|
|
|
|
|
};
|
|
|
|
|
|