• 大小: 26KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-08
  • 语言: C/C++
  • 标签: MFC  

资源简介

MFC绘制阿基米德螺旋线 阿基米德螺线也叫“等速螺线”。 当一点P沿动射线OP以等速率运动的同时,该射线又以等角速度绕点O旋转,点P的轨迹称为“阿基米德螺线”。直线旋转一周时,动点在直线上移动的距离称为导程用字母S表示。近似画法:(1)先以导程S为半径画圆,再将圆周及半径分成相同的n等分;(2)以O为圆心,作各同心圆弧于相应数字的半径相交,得交点Ⅰ、Ⅱ、Ⅲ、…Ⅷ各点,即为阿基米德涡线上的点;(3)依次光滑连接各点,即得阿基米德螺线。

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “huatu.h“

#include “MainFrm.h“
#include “huatuDoc.h“
#include “huatuView.h“

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

/////////////////////////////////////////////////////////////////////////////
// CHuatuApp

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

/////////////////////////////////////////////////////////////////////////////
// CHuatuApp construction

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

/////////////////////////////////////////////////////////////////////////////
// The one and only CHuatuApp object

CHuatuApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CHuatuApp initialization

BOOL CHuatuApp::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(CHuatuDoc)
RUNTIME_CLASS(CMainframe)       // main SDI frame window
RUNTIME_CLASS(CHuatuView));
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;
}


/////////

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

     文件       2334  2009-08-06 20:06  MFC绘制阿基米德螺旋线\huatu.clw

     文件       4191  2008-09-24 17:29  MFC绘制阿基米德螺旋线\huatu.cpp

     文件       4531  2009-08-06 20:10  MFC绘制阿基米德螺旋线\huatu.dsp

     文件        533  2008-09-24 17:29  MFC绘制阿基米德螺旋线\huatu.dsw

     文件       1345  2008-09-24 17:29  MFC绘制阿基米德螺旋线\huatu.h

     文件        244  2009-10-09 20:30  MFC绘制阿基米德螺旋线\huatu.plg

     文件      11711  2009-08-05 13:05  MFC绘制阿基米德螺旋线\huatu.rc

     文件        876  2018-12-19 13:20  MFC绘制阿基米德螺旋线\huatu.sln

    ..A..H.     11264  2018-12-19 13:20  MFC绘制阿基米德螺旋线\huatu.suo

     文件       7968  2018-06-14 12:04  MFC绘制阿基米德螺旋线\huatu.vcxproj

     文件       2483  2018-06-14 12:04  MFC绘制阿基米德螺旋线\huatu.vcxproj.filters

     文件        143  2018-06-14 12:04  MFC绘制阿基米德螺旋线\huatu.vcxproj.user

     文件       1722  2008-09-24 17:29  MFC绘制阿基米德螺旋线\huatuDoc.cpp

     文件       1464  2008-09-24 17:29  MFC绘制阿基米德螺旋线\huatuDoc.h

     文件       8085  2018-06-14 12:22  MFC绘制阿基米德螺旋线\huatuView.cpp

     文件       1759  2008-09-24 17:30  MFC绘制阿基米德螺旋线\huatuView.h

     文件       3488  2009-08-15 10:45  MFC绘制阿基米德螺旋线\MainFrm.cpp

     文件       1525  2009-02-04 10:46  MFC绘制阿基米德螺旋线\MainFrm.h

     文件        931  2009-08-06 20:05  MFC绘制阿基米德螺旋线\paint.cpp

     文件       4287  2008-09-24 17:29  MFC绘制阿基米德螺旋线\ReadMe.txt

     文件       1078  2008-09-24 17:29  MFC绘制阿基米德螺旋线\res\huatu.ico

     文件        397  2008-09-24 17:29  MFC绘制阿基米德螺旋线\res\huatu.rc2

     文件       1078  2008-09-24 17:29  MFC绘制阿基米德螺旋线\res\huatuDoc.ico

     文件       1078  2008-09-24 17:29  MFC绘制阿基米德螺旋线\res\Toolbar.bmp

     文件        639  2009-02-02 17:02  MFC绘制阿基米德螺旋线\Resource.h

     文件        207  2008-09-24 17:29  MFC绘制阿基米德螺旋线\StdAfx.cpp

     文件       1054  2008-09-24 17:29  MFC绘制阿基米德螺旋线\StdAfx.h

     目录          0  2018-06-28 11:15  MFC绘制阿基米德螺旋线\res

     目录          0  2018-12-19 13:20  MFC绘制阿基米德螺旋线

----------- ---------  ---------- -----  ----

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

评论

共有 条评论