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