资源简介
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个文件信息
- 上一篇:c语言课程设计职工信息管理系统
- 下一篇:卡尔曼滤波和互补滤波参考程序
相关资源
- MFC在ListCtrl中加入Button
- MFC基于对话框的二进制与十六进制间
- 基于MFC的多媒体音频播放器
- Mfc获取本机IP地址
- VC6.0_MFC_读写配置文件
- mfc聊天程序,利用TCP/IP完成双向数据
- MFC中给对话框添加皮肤Skin_H
- 使用MFC进行GUI编程
- MFC多标签仿Chorme浏览器Demo
- PEMFC matlab 仿真
- MFC中将CScrollView视图显示在对话框中
- MFC中配置文件ini的使用
- 说话人识别和确认系统
- VS2010 MFC 读写Excel 可运行
- MFC实现填充算法
- 小蔡时钟V2.0(MFC版) VS2008
- MFC图像处理 反色和红色
- OpenGL+MFC显示三维点云中每一个点的法
- 用openglMFC实现的魔方
- 基于MFC编写的读写USB_HID设备数据程序
- VS2010 MFC 选择并获得文件的MD5
- 建立一个基于对话框的MFC应用程序S
- VC MFC图片获取代码.rar
- MFC同步线程类
- DirectUIForMFC
- 密码学MFC实现仿射加密解密超级计算
- mfc控制台输出
- VC/MFC创建可编辑节点的树形控件
- MFC下实现SOAP服务端和SOAP客户端
- 广播通信设计
评论
共有 条评论