• 大小: 1.97MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-11-16
  • 语言: 其他
  • 标签:

资源简介

科学可视化实验代码+实验报告,基于网格序列法生成等值线

资源截图

代码片段和文件信息

// line.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “line.h“

#include “MainFrm.h“
#include “lineDoc.h“
#include “lineView.h“

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

/////////////////////////////////////////////////////////////////////////////
// CLineApp

BEGIN_MESSAGE_MAP(CLineApp CWinApp)
//{{AFX_MSG_MAP(CLineApp)
ON_COMMAND(ID_APP_ABOUT OnAppAbout)
// NOTE - the ClassWizard will add and remove mapping macros here.
//    DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG_MAP
// Standard file based document commands
ON_COMMAND(ID_FILE_NEW CWinApp::OnFileNew)
ON_COMMAND(ID_FILE_OPEN CWinApp::OnFileOpen)
// Standard print setup command
ON_COMMAND(ID_FILE_PRINT_SETUP CWinApp::OnFilePrintSetup)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CLineApp construction

CLineApp::CLineApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CLineApp object

CLineApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CLineApp initialization

BOOL CLineApp::InitInstance()
{
AfxEnableControlContainer();

// Standard initialization
// If you are not using these features and wish to reduce the size
//  of your final executable you should remove from the following
//  the specific initialization routines you do not need.

#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif

// Change the registry key under which our settings are stored.
// TODO: You should modify this string to be something appropriate
// such as the name of your company or organization.
SetRegistryKey(_T(“Local AppWizard-Generated Applications“));

LoadStdProfileSettings();  // Load standard INI file options (including MRU)

// Register the application‘s document templates.  Document templates
//  serve as the connection between documents frame windows and views.

CSingleDocTemplate* pDocTemplate;
pDocTemplate = new CSingleDocTemplate(
IDR_MAINframe
RUNTIME_CLASS(CLineDoc)
RUNTIME_CLASS(CMainframe)       // main SDI frame window
RUNTIME_CLASS(CLineView));
AddDocTemplate(pDocTemplate);

// Parse command line for standard shell commands DDE file open
CCommandLineInfo cmdInfo;
ParseCommandLine(cmdInfo);

// Dispatch commands specified on the command line
if (!ProcessShellCommand(cmdInfo))
return FALSE;

// The one and only window has been initialized so show and update it.
m_pMainWnd->ShowWindow(SW_SHOW);
m_pMainWnd->UpdateWindow();

return TRUE;
}


/////////////////////////

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

     文件     118844  2013-11-19 14:30  网格序列法实现等值线生成\line\Debug\line.exe

     文件     359660  2013-11-19 14:30  网格序列法实现等值线生成\line\Debug\line.ilk

     文件      22698  2013-11-18 23:12  网格序列法实现等值线生成\line\Debug\line.obj

     文件    5492236  2013-11-18 10:33  网格序列法实现等值线生成\line\Debug\line.pch

     文件     427008  2013-11-19 14:30  网格序列法实现等值线生成\line\Debug\line.pdb

     文件       7228  2013-11-18 10:33  网格序列法实现等值线生成\line\Debug\line.res

     文件      14468  2013-11-18 10:33  网格序列法实现等值线生成\line\Debug\lineDoc.obj

     文件      26545  2013-11-19 14:30  网格序列法实现等值线生成\line\Debug\lineView.obj

     文件      19767  2013-11-18 10:33  网格序列法实现等值线生成\line\Debug\MainFrm.obj

     文件     105486  2013-11-18 10:33  网格序列法实现等值线生成\line\Debug\StdAfx.obj

     文件     222208  2013-12-03 16:41  网格序列法实现等值线生成\line\Debug\vc60.idb

     文件     372736  2013-11-19 14:30  网格序列法实现等值线生成\line\Debug\vc60.pdb

     文件      28480  2013-11-18 17:53  网格序列法实现等值线生成\line\line.aps

     文件       2160  2013-11-18 18:48  网格序列法实现等值线生成\line\line.clw

     文件       4173  2013-11-18 09:52  网格序列法实现等值线生成\line\line.cpp

     文件       4513  2013-11-18 09:52  网格序列法实现等值线生成\line\line.dsp

     文件        521  2013-11-18 09:52  网格序列法实现等值线生成\line\line.dsw

     文件       1334  2013-11-18 09:52  网格序列法实现等值线生成\line\line.h

     文件      74752  2013-12-03 16:41  网格序列法实现等值线生成\line\line.ncb

     文件      48640  2013-12-03 16:41  网格序列法实现等值线生成\line\line.opt

     文件       2188  2013-11-19 14:30  网格序列法实现等值线生成\line\line.plg

     文件      10519  2013-11-18 09:52  网格序列法实现等值线生成\line\line.rc

     文件       1702  2013-11-18 09:52  网格序列法实现等值线生成\line\lineDoc.cpp

     文件       1453  2013-11-18 09:52  网格序列法实现等值线生成\line\lineDoc.h

     文件       5443  2013-11-19 14:30  网格序列法实现等值线生成\line\lineView.cpp

     文件       2006  2013-11-18 23:12  网格序列法实现等值线生成\line\lineView.h

     文件       2505  2013-11-18 09:52  网格序列法实现等值线生成\line\MainFrm.cpp

     文件       1581  2013-11-18 09:52  网格序列法实现等值线生成\line\MainFrm.h

     文件       4263  2013-11-18 09:52  网格序列法实现等值线生成\line\ReadMe.txt

     文件       1078  2013-11-18 09:52  网格序列法实现等值线生成\line\res\line.ico

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

评论

共有 条评论