• 大小: 2.34MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-10-26
  • 语言: C/C++
  • 标签:           

资源简介

计算机图形学基于VC++开发的实现多边形扫描转换的程序,可以实现多边形区域填充

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “Graph.h“

#include “MainFrm.h“
#include “GraphDoc.h“
#include “GraphView.h“

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

/////////////////////////////////////////////////////////////////////////////
// CGraphApp

BEGIN_MESSAGE_MAP(CGraphApp CWinApp)
//{{AFX_MSG_MAP(CGraphApp)
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_OPEN CWinApp::OnFileOpen)
// Standard print setup command
ON_COMMAND(ID_FILE_PRINT_SETUP CWinApp::OnFilePrintSetup)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CGraphApp construction

CGraphApp::CGraphApp()
{
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CGraphApp object

CGraphApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CGraphApp initialization

BOOL CGraphApp::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(CGraphDoc)
RUNTIME_CLASS(CMainframe)       // main SDI frame window
RUNTIME_CLASS(CGraphView));
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;
}


/////////////////////////////////////////////////////////////////////////////
// CAboutDlg dialog used for App About

class CAboutDlg : public CDialo

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2011-10-04 20:41  多边形扫描转换\
     目录           0  2011-10-04 21:17  多边形扫描转换\Graph\
     目录           0  2011-10-04 21:15  多边形扫描转换\Graph\Debug\
     文件      118867  2011-10-04 21:15  多边形扫描转换\Graph\Debug\Graph.exe
     文件      315764  2011-10-04 21:15  多边形扫描转换\Graph\Debug\Graph.ilk
     文件       23150  2011-10-04 21:08  多边形扫描转换\Graph\Debug\Graph.obj
     文件     5728324  2011-08-31 15:25  多边形扫描转换\Graph\Debug\Graph.pch
     文件      484352  2011-10-04 21:15  多边形扫描转换\Graph\Debug\Graph.pdb
     文件        6240  2011-10-04 21:15  多边形扫描转换\Graph\Debug\Graph.res
     文件       15005  2011-10-04 20:58  多边形扫描转换\Graph\Debug\GraphDoc.obj
     文件       24668  2011-10-04 21:12  多边形扫描转换\Graph\Debug\GraphView.obj
     文件       19698  2011-08-31 15:25  多边形扫描转换\Graph\Debug\MainFrm.obj
     文件      105429  2011-08-31 15:25  多边形扫描转换\Graph\Debug\StdAfx.obj
     文件      222208  2011-10-04 21:17  多边形扫描转换\Graph\Debug\vc60.idb
     文件      372736  2011-10-04 21:12  多边形扫描转换\Graph\Debug\vc60.pdb
     文件       43356  2011-10-04 21:15  多边形扫描转换\Graph\Graph.aps
     文件        1853  2011-10-04 21:17  多边形扫描转换\Graph\Graph.clw
     文件        4048  2011-10-04 20:58  多边形扫描转换\Graph\Graph.cpp
     文件        4534  2011-08-31 15:25  多边形扫描转换\Graph\Graph.dsp
     文件         533  2011-08-31 15:25  多边形扫描转换\Graph\Graph.dsw
     文件        1158  2011-10-04 20:49  多边形扫描转换\Graph\Graph.h
     文件       91136  2011-10-04 21:17  多边形扫描转换\Graph\Graph.ncb
     文件       72704  2011-10-04 21:17  多边形扫描转换\Graph\Graph.opt
     文件         244  2011-10-04 21:17  多边形扫描转换\Graph\Graph.plg
     文件       10280  2011-10-04 21:15  多边形扫描转换\Graph\Graph.rc
     文件        1517  2011-10-04 20:58  多边形扫描转换\Graph\GraphDoc.cpp
     文件        1464  2011-08-31 15:25  多边形扫描转换\Graph\GraphDoc.h
     文件        5115  2011-10-04 21:12  多边形扫描转换\Graph\GraphView.cpp
     文件        1842  2011-10-04 21:08  多边形扫描转换\Graph\GraphView.h
     文件        2506  2011-08-31 15:25  多边形扫描转换\Graph\MainFrm.cpp
     文件        1581  2011-08-31 15:25  多边形扫描转换\Graph\MainFrm.h
............此处省略9个文件信息

评论

共有 条评论