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