/
redgpu
/
GDMagArchive
Обзор
Документация
Войти
/
redgpu
/
GDMagArchive
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
aug99/lander/Code/OGL/Friction/TimeProps.cpp
48 строк
1 KB
Don Williamson
first commit
31 окт 2016, 17:03
31 окт 2016, 17:03
c823e7b
Код
Авторство
О чём код?
// TimeProps.cpp : implementation file // #include "stdafx.h" #include "Friction.h" #include "TimeProps.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// // CTimeProps dialog CTimeProps::CTimeProps(CWnd* pParent /*=NULL*/) : CDialog(CTimeProps::IDD, pParent) { //{{AFX_DATA_INIT(CTimeProps) m_FixedTimeSteps = FALSE; m_Iterations = 0; m_MaxTimeStep = 0.0f; //}}AFX_DATA_INIT } void CTimeProps::DoDataExchange(CDataExchange* pDX) { CDialog::DoDataExchange(pDX); //{{AFX_DATA_MAP(CTimeProps) DDX_Check(pDX, IDC_FIXEDTIME, m_FixedTimeSteps); DDX_Text(pDX, IDC_ITERATIONS, m_Iterations); DDV_MinMaxInt(pDX, m_Iterations, 1, 100); DDX_Text(pDX, IDC_MAXTIMESTEP, m_MaxTimeStep); //}}AFX_DATA_MAP } BEGIN_MESSAGE_MAP(CTimeProps, CDialog) //{{AFX_MSG_MAP(CTimeProps) // NOTE: the ClassWizard will add message map macros here //}}AFX_MSG_MAP END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CTimeProps message handlers