• 大小: 234KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-06-01
  • 语言: C/C++
  • 标签: VC6.0  MFC  图形学  

资源简介

应用c++ MFC实现Cantor集算法,配套清华大学出版社的《计算机图形学基础教程》。

资源截图

代码片段和文件信息

// Inputdlg.cpp : implementation file
//

#include “stdafx.h“
#include “Test.h“
#include “Inputdlg.h“

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

/////////////////////////////////////////////////////////////////////////////
// Inputdlg dialog


Inputdlg::Inputdlg(CWnd* pParent /*=NULL*/)
: CDialog(Inputdlg::IDD pParent)
{
//{{AFX_DATA_INIT(Inputdlg)
m_n = 0;
//}}AFX_DATA_INIT
}


void Inputdlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(Inputdlg)
DDX_Text(pDX IDC_EDIT1 m_n);
DDV_MinMaxInt(pDX m_n 0 10);
//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(Inputdlg CDialog)
//{{AFX_MSG_MAP(Inputdlg)
ON_WM_SHOWWINDOW()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// Inputdlg message handlers

void Inputdlg::OnShowWindow(BOOL bShow UINT nStatus) 
{
CDialog::OnShowWindow(bShow nStatus);

// TODO: Add your message handler code here
GetDlgItem(IDC_EDIT1)->SetFocus();
((CEdit *)GetDlgItem(IDC_EDIT1))->SetSel(0-1);
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1152  2001-12-31 15:47  案例23-Cantor集算法\Inputdlg.cpp

     文件       1186  2001-12-31 15:47  案例23-Cantor集算法\Inputdlg.h

     文件       2505  2003-06-30 08:36  案例23-Cantor集算法\MainFrm.cpp

     文件       1581  2003-06-30 08:36  案例23-Cantor集算法\MainFrm.h

     文件       4263  2003-06-30 08:36  案例23-Cantor集算法\ReadMe.txt

     文件      10134  2003-06-30 08:50  案例23-Cantor集算法\res\app.ico

     文件        766  2003-06-30 08:50  案例23-Cantor集算法\res\draw.ico

     文件       4710  2003-06-30 08:50  案例23-Cantor集算法\res\exit.ico

     文件       3638  2003-06-30 08:50  案例23-Cantor集算法\res\Help.ico

     文件     202556  2001-12-31 15:16  案例23-Cantor集算法\res\kld.bmp

     文件       1078  2003-06-30 08:51  案例23-Cantor集算法\res\Test.ico

     文件        396  2003-06-30 08:36  案例23-Cantor集算法\res\Test.rc2

     文件       1078  2003-06-30 08:36  案例23-Cantor集算法\res\TestDoc.ico

     文件       1654  2003-06-30 08:50  案例23-Cantor集算法\res\Toolbar.bmp

     文件       1048  2001-12-31 15:16  案例23-Cantor集算法\resource.h

     文件        206  2003-06-30 08:36  案例23-Cantor集算法\StdAfx.cpp

     文件       1054  2003-06-30 08:36  案例23-Cantor集算法\StdAfx.h

     文件     252616  2008-06-28 11:24  案例23-Cantor集算法\Test.aps

     文件       2075  2008-06-28 11:27  案例23-Cantor集算法\Test.clw

     文件       4218  2008-06-28 11:26  案例23-Cantor集算法\Test.cpp

     文件       5030  2007-09-17 09:38  案例23-Cantor集算法\Test.dsp

     文件        531  2003-06-30 08:36  案例23-Cantor集算法\Test.dsw

     文件       1334  2003-06-30 08:36  案例23-Cantor集算法\Test.h

     文件     173056  2008-06-28 11:27  案例23-Cantor集算法\Test.ncb

     文件      50688  2008-06-28 11:27  案例23-Cantor集算法\Test.opt

     文件      11197  2002-01-02 16:27  案例23-Cantor集算法\Test.rc

     文件       1702  2003-06-30 08:36  案例23-Cantor集算法\TestDoc.cpp

     文件       1453  2003-06-30 08:36  案例23-Cantor集算法\TestDoc.h

     文件       3359  2008-06-28 11:26  案例23-Cantor集算法\TestView.cpp

     文件       1985  2001-12-31 15:34  案例23-Cantor集算法\TestView.h

............此处省略6个文件信息

评论

共有 条评论