• 大小: 2.2MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-08-13
  • 语言: C/C++
  • 标签: 图形学  

资源简介

图形学圆弧算法MFC:利用圆弧的参数方程,采用离散化方法生成圆弧的思想。即将圆弧离散折线集,通过反复调用直线段的生成算法绘制。

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “Arc_1.h“

#include “MainFrm.h“
#include “Arc_1Doc.h“
#include “Arc_1View.h“

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

/////////////////////////////////////////////////////////////////////////////
// CArc_1App

BEGIN_MESSAGE_MAP(CArc_1App CWinApp)
//{{AFX_MSG_MAP(CArc_1App)
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()

/////////////////////////////////////////////////////////////////////////////
// CArc_1App construction

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

/////////////////////////////////////////////////////////////////////////////
// The one and only CArc_1App object

CArc_1App theApp;

/////////////////////////////////////////////////////////////////////////////
// CArc_1App initialization

BOOL CArc_1App::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(CArc_1Doc)
RUNTIME_CLASS(CMainframe)       // main SDI frame window
RUNTIME_CLASS(CArc_1View));
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;
}


/////////

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-11-10 22:41  Arc_1\
     文件       45400  2018-11-10 22:32  Arc_1\Arc_1.aps
     文件        3047  2018-11-10 22:35  Arc_1\Arc_1.clw
     文件        4191  2018-11-10 22:22  Arc_1\Arc_1.cpp
     文件        4660  2018-11-10 22:41  Arc_1\Arc_1.dsp
     文件         518  2018-11-10 22:22  Arc_1\Arc_1.dsw
     文件        1345  2018-11-10 22:22  Arc_1\Arc_1.h
     文件       50176  2018-11-10 22:41  Arc_1\Arc_1.ncb
     文件       49664  2018-11-10 22:41  Arc_1\Arc_1.opt
     文件        1774  2018-11-10 22:32  Arc_1\Arc_1.plg
     文件       12711  2018-11-10 22:32  Arc_1\Arc_1.rc
     文件        1722  2018-11-10 22:22  Arc_1\Arc_1Doc.cpp
     文件        1464  2018-11-10 22:22  Arc_1\Arc_1Doc.h
     文件        3400  2018-11-10 22:32  Arc_1\Arc_1View.cpp
     文件        1837  2018-11-10 22:31  Arc_1\Arc_1View.h
     目录           0  2018-11-10 22:32  Arc_1\Debug\
     文件      118900  2018-11-10 22:32  Arc_1\Debug\Arc_1.exe
     文件      314616  2018-11-10 22:32  Arc_1\Debug\Arc_1.ilk
     文件       23444  2018-11-10 22:32  Arc_1\Debug\Arc_1.obj
     文件     5495576  2018-11-10 22:32  Arc_1\Debug\Arc_1.pch
     文件      336896  2018-11-10 22:32  Arc_1\Debug\Arc_1.pdb
     文件        7848  2018-11-10 22:32  Arc_1\Debug\Arc_1.res
     文件       15220  2018-11-10 22:32  Arc_1\Debug\Arc_1Doc.obj
     文件       25741  2018-11-10 22:32  Arc_1\Debug\Arc_1View.obj
     文件       20467  2018-11-10 22:32  Arc_1\Debug\MainFrm.obj
     文件      106134  2018-11-10 22:32  Arc_1\Debug\StdAfx.obj
     文件       11028  2018-11-10 22:32  Arc_1\Debug\dialog1.obj
     文件      214016  2018-11-10 22:40  Arc_1\Debug\vc60.idb
     文件      364544  2018-11-10 22:32  Arc_1\Debug\vc60.pdb
     文件        2506  2018-11-10 22:22  Arc_1\MainFrm.cpp
     文件        1581  2018-11-10 22:22  Arc_1\MainFrm.h
............此处省略11个文件信息

评论

共有 条评论