资源简介
利用逐点比较法实现直线的插补运算,对初学者有用
代码片段和文件信息
// chabu.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “chabu.h“
#include “chabuDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CChabuApp
BEGIN_MESSAGE_MAP(CChabuApp CWinApp)
//{{AFX_MSG_MAP(CChabuApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CChabuApp construction
CChabuApp::CChabuApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CChabuApp object
CChabuApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CChabuApp initialization
BOOL CChabuApp::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
CChabuDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
// dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
// dismissed with Cancel
}
// Since the dialog has been closed return FALSE so that we exit the
// application rather than start the application‘s message pump.
return FALSE;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3561 2013-03-02 15:06 chabu\ReadMe.txt
文件 1313 2013-03-02 15:06 chabu\chabu.h
文件 2049 2013-03-02 15:06 chabu\chabu.cpp
文件 1054 2013-03-02 15:06 chabu\StdAfx.h
文件 207 2013-03-02 15:06 chabu\StdAfx.cpp
文件 397 2013-03-02 15:06 chabu\res\chabu.rc2
文件 1078 2013-03-02 15:06 chabu\res\chabu.ico
文件 4141 2013-03-02 15:06 chabu\chabu.dsp
文件 518 2013-03-02 15:06 chabu\chabu.dsw
文件 2832 2013-03-04 10:35 chabu\Debug\chabu.res
文件 214016 2013-03-04 14:23 chabu\Debug\vc60.idb
文件 5493172 2013-03-02 15:59 chabu\Debug\chabu.pch
文件 364544 2013-03-04 14:23 chabu\Debug\vc60.pdb
文件 105461 2013-03-02 15:59 chabu\Debug\StdAfx.obj
文件 110645 2013-03-04 14:20 chabu\Debug\chabu.exe
文件 476160 2013-03-04 14:20 chabu\Debug\chabu.pdb
文件 12796 2013-03-04 11:11 chabu\Debug\chabu.obj
文件 203800 2013-03-04 14:20 chabu\Debug\chabu.ilk
文件 1042 2013-03-04 14:23 chabu\chabu.plg
文件 913 2013-03-04 10:30 chabu\Resource.h
文件 5863 2013-03-04 10:35 chabu\chabu.rc
文件 35848 2013-03-04 10:35 chabu\chabu.aps
文件 58368 2013-03-04 14:37 chabu\chabu.ncb
文件 1507 2013-03-04 11:09 chabu\chabu.clw
文件 1428 2013-03-04 11:11 chabu\chabuDlg.h
文件 6406 2013-03-04 14:37 chabu\chabuDlg.cpp
文件 233472 2013-03-04 14:37 chabu\chabu.opt
目录 0 2013-03-02 15:06 chabu\res
目录 0 2013-03-02 15:06 chabu\Debug
目录 0 2013-03-02 15:05 chabu
............此处省略3个文件信息
- 上一篇:基于单片机的多功能收音机的设计与实现
- 下一篇:黑太阳1.0远控源码
相关资源
- 缺失数据多重插补处理方法的算法实
- 天津大学的插补算法与运动控制
- 复杂轮廓曲线的样条插补与速度规划
- DDA直线插补
- 缺失数据的回归插补
- linuxcnc插补算法函数调用关系图
- 三菱FX3U插补画圆程序
- 对插补技术的理解.docx
- CODESYS运动控制之SMC_Interpolator.docx
- CNC系统数据采样插补的新算法
- 5轴G代码程序(含5轴Nurbs曲线插补程序
- CNC系统数据采样插补的新算法_陈东海
- 基于STM32的简易运动控制器直线插补、
- 欧姆龙CP1H三轴位置控制模板内含直线
- 数控插补程序
- 基于DSP与CPLD数控插补器的研究
- 三菱FXPLC直线圆弧插补程序
- FX系列逐点逼近四象限直线插补
- FX 5U插补(.gx3文件)
- PLC圆弧插补
- 雷泰DMC1410v1.1运动控制卡测试程式
评论
共有 条评论