// DecimationDialog.cpp : インプリメンテーション ファイル // #include "stdafx.h" #include "MeshEditor.h" #include "DecimationDialog.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// // DecimationDialog ダイアログ DecimationDialog::DecimationDialog(CWnd* pParent /*=NULL*/) : CDialog(DecimationDialog::IDD, pParent) { //{{AFX_DATA_INIT(DecimationDialog) m_rate = 0.5f; //}}AFX_DATA_INIT } void DecimationDialog::DoDataExchange(CDataExchange* pDX) { CDialog::DoDataExchange(pDX); //{{AFX_DATA_MAP(DecimationDialog) DDX_Text(pDX, IDC_EDIT1, m_rate); //}}AFX_DATA_MAP } BEGIN_MESSAGE_MAP(DecimationDialog, CDialog) //{{AFX_MSG_MAP(DecimationDialog) // メモ - ClassWizard はこの位置にマッピング用のマクロを追加または削除します。 //}}AFX_MSG_MAP END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // DecimationDialog メッセージ ハンドラ