⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dlgvertexmass.cpp

📁 本程序描述的是一个三维织物动感模拟系统。计算机生成真实感服装被列入计算机图形学亟需解决的三大问题之一。
💻 CPP
字号:
// DlgVertexMass.cpp : implementation file
//

#include "stdafx.h"
#include "ClothSimulation.h"
#include "DlgVertexMass.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CDlgVertexMass dialog


CDlgVertexMass::CDlgVertexMass(CWnd* pParent /*=NULL*/)
	: CDialog(CDlgVertexMass::IDD, pParent)
{
	//{{AFX_DATA_INIT(CDlgVertexMass)
		// NOTE: the ClassWizard will add member initialization here
	m_VertexMass = 0.0f;
	//}}AFX_DATA_INIT
}


void CDlgVertexMass::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CDlgVertexMass)
		// NOTE: the ClassWizard will add DDX and DDV calls here
	DDX_Text(pDX, IDC_VERTEXMASS, m_VertexMass);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CDlgVertexMass, CDialog)
	//{{AFX_MSG_MAP(CDlgVertexMass)
		// NOTE: the ClassWizard will add message map macros here
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CDlgVertexMass message handlers

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -