资源简介
曲线绘制类
不实用链表,可随时添加新数据,内存占用率极低
自动根据输入数据值修改Y坐标和以前绘制的点的位置
可添加1条至多条曲线,最大9条曲线同时显示
代码片段和文件信息
// OScopeCtrl.cpp : implementation file//
#include “stdafx.h“
#include “math.h“
#include “OScopeCtrl.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__ ;
#endif
/////////////////////////////////////////////////////////////////////////////
// COScopeCtrl
COScopeCtrl::COScopeCtrl()
{
// since plotting is based on a LineTo for each new point
// we need a starting point (i.e. a “previous“ point)
// use 0.0 as the default first point.
// these are public member variables and can be changed outside
// (after construction). Therefore m_perviousPosition could be set to
// a more appropriate value prior to the first call to SetPosition.
for (int i=0;i<10;i++)
{
m_dPreviousPosition[i]= 0.0 ;
m_dCurrentPosition[i]=0.0;
m_strLegend[i]=““;
}
// public variable for the number of decimal places on the y axis
m_nYDecimals = 3 ;
// set some initial values for the scaling until “SetRange“ is called.
// these are protected varaibles and must be set with SetRange
// in order to ensure that m_dRange is updated accordingly
m_dLowerLimit = -10.0 ;
m_dUpperLimit = 10.0 ;
m_dRange = m_dUpperLimit - m_dLowerLimit ; // protected member variable
// m_nShiftPixels determines how much the plot shifts (in terms of pixels)
// with the addition of a new data point
m_nShiftPixels = 4 ;
m_nHalfShiftPixels = m_nShiftPixels/2 ; // protected
m_nPlotShiftPixels = m_nShiftPixels + m_nHalfShiftPixels ; // protected
// background grid and data colors
// these are public variables and can be set directly
m_crBackColor = RGB( 0 0 0) ; // see also SetBackgroundColor
m_crGridColor = RGB( 0 255 255) ; // see also SetGridColor
m_crPlotColor[0] = RGB(255 255 255) ;
m_crPlotColor[1] = RGB(255 0 0) ;
m_crPlotColor[2] = RGB(0 255 0) ;
m_crPlotColor[3] = RGB(128 255 128) ;
m_crPlotColor[4] = RGB(0 0 255) ;
m_crPlotColor[5] = RGB(0 255 255) ;
m_crPlotColor[6] = RGB(255 0 255) ;
m_crPlotColor[7] = RGB(255 255 0) ;
m_crPlotColor[8] = RGB(128 255 255) ;
m_crPlotColor[9] = RGB(255 128 255) ;
// protected variables
for(i=0;i<10;i++)
m_penPlot[i].CreatePen(PS_SOLID 0 m_crPlotColor[i]) ;
m_brushBack.CreateSolidBrush(m_crBackColor) ;
// public member variables can be set directly
m_strXUnitsString.Format(“Samples“) ; // can also be set with SetXUnits
m_strYUnitsString.Format(“Y units“) ; // can also be set with SetYUnits
// protected bitmaps to restore the memory DC‘s
m_pbitmapOldGrid = NULL ;
m_pbitmapOldPlot = NULL ;
m_fTempMax=UD_ZERO;
m_dPreVFactor=-1.0;
m_nLineNum=1;//曲线默认只有一条
} // COScopeCtrl
/////////////////////////////////////////////////////////////////////////////
COScopeCtrl::~COScopeCtrl()
{
// just to be picky restore the bitmaps for the tw
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2010-12-15 10:16 曲线绘制1.3版本(继承1.2,可同时绘制最多10条曲线)
目录 0 2010-12-15 11:26 曲线绘制1.3版本(继承1.2,可同时绘制最多10条曲线)\DemoProject
目录 0 2010-12-15 11:26 曲线绘制1.3版本(继承1.2,可同时绘制最多10条曲线)\DemoProject\Debug
文件 118915 2010-12-15 11:23 曲线绘制1.3版本(继承1.2,可同时绘制最多10条曲线)\DemoProject\Debug\TestOScope.exe
文件 20277 2010-12-15 11:25 曲线绘制1.3版本(继承1.2,可同时绘制最多10条曲线)\DemoProject\OScopeCtrl.cpp
文件 2599 2010-12-15 11:22 曲线绘制1.3版本(继承1.2,可同时绘制最多10条曲线)\DemoProject\OScopeCtrl.h
文件 3421 1998-12-07 21:23 曲线绘制1.3版本(继承1.2,可同时绘制最多10条曲线)\DemoProject\ReadMe.txt
目录 0 2010-12-08 21:59 曲线绘制1.3版本(继承1.2,可同时绘制最多10条曲线)\DemoProject\res
文件 1078 1998-12-08 08:31 曲线绘制1.3版本(继承1.2,可同时绘制最多10条曲线)\DemoProject\res\TestOScope.ico
文件 402 1998-12-07 21:23 曲线绘制1.3版本(继承1.2,可同时绘制最多10条曲线)\DemoProject\res\TestOScope.rc2
文件 731 2010-12-08 22:20 曲线绘制1.3版本(继承1.2,可同时绘制最多10条曲线)\DemoProject\resource.h
文件 210 1998-12-08 13:19 曲线绘制1.3版本(继承1.2,可同时绘制最多10条曲线)\DemoProject\StdAfx.cpp
文件 987 1998-12-07 21:23 曲线绘制1.3版本(继承1.2,可同时绘制最多10条曲线)\DemoProject\StdAfx.h
文件 4438 1998-12-07 22:32 曲线绘制1.3版本(继承1.2,可同时绘制最多10条曲线)\DemoProject\TestOScope.001
文件 36124 2010-12-15 10:16 曲线绘制1.3版本(继承1.2,可同时绘制最多10条曲线)\DemoProject\TestOScope.aps
文件 2159 1998-12-08 13:19 曲线绘制1.3版本(继承1.2,可同时绘制最多10条曲线)\DemoProject\TestOScope.cpp
文件 4374 2010-12-15 10:33 曲线绘制1.3版本(继承1.2,可同时绘制最多10条曲线)\DemoProject\TestOScope.dsp
文件 545 2010-12-08 22:00 曲线绘制1.3版本(继承1.2,可同时绘制最多10条曲线)\DemoProject\TestOScope.dsw
文件 1392 1998-12-08 13:19 曲线绘制1.3版本(继承1.2,可同时绘制最多10条曲线)\DemoProject\TestOScope.h
文件 50176 2010-12-15 11:25 曲线绘制1.3版本(继承1.2,可同时绘制最多10条曲线)\DemoProject\TestOScope.ncb
文件 48640 2010-12-15 11:25 曲线绘制1.3版本(继承1.2,可同时绘制最多10条曲线)\DemoProject\TestOScope.opt
文件 1421 2010-12-15 11:23 曲线绘制1.3版本(继承1.2,可同时绘制最多10条曲线)\DemoProject\TestOScope.plg
文件 5448 2010-12-15 10:16 曲线绘制1.3版本(继承1.2,可同时绘制最多10条曲线)\DemoProject\TestOScope.rc
文件 6390 2010-12-15 11:23 曲线绘制1.3版本(继承1.2,可同时绘制最多10条曲线)\DemoProject\TestOScopeDlg.cpp
文件 1624 1998-12-08 13:19 曲线绘制1.3版本(继承1.2,可同时绘制最多10条曲线)\DemoProject\TestOScopeDlg.h
----------- --------- ---------- ----- ----
311351 25
- 上一篇:基于MATLAB的温度场模拟
- 下一篇:装载问题 装载问题装载问题
相关资源
- VC++School管理系统(学生、教师、在职
- 实验二、GIS图形数据对象的组织一
- 邮件发送程序客户端----VC实现
- 基于Qt的C++架构模型MVC在C++后端管理系
- mstcpip头文件
- WindowsVC++获取CPU整体使用率
- vc++ 运用MFC实现基于AfxMessageBox的 自定
- VC++中文繁体、简体BIG-GBK编码转换程序
- 停车场管理系统MFC
- MFC编写的五子棋程序源代码
- 利用opengl 组件的基础上使用VC++编写的
- VC++编写DLL导出函数及其调用方法
- 曲线绘制Bezier、三次B样条、Hermite
- 马石安编写的VC++程序设计与应用程序
- 家谱管理系统 VC
- 本例程采用VC++ 实现JPG格式图片的打开
- MFC42D.DLL MFCO42D.DLL MSVCRTD.DLL
- VC++异步通信的socket类
- 用VC编写的三菱PLC通讯
- 固高GT编程手册的Vc++单轴运动程序
- vc6使用CImage的程序
- AES加密解密系统 VC++6.0 实现
- VC++access与excel数据的导入导出
- opengl实现鼠标坐标的显示
- VC++关于纹理特征提取的代码完整
- 基于mfcvc++6.0的图书馆管理系统
- 贝塞尔曲面 vc++ opengl
- 计算机图形学——立方体旋转 VC MFC
- 如何在VC++ 6.0创建RTX项目
- VC++ 实现将本地文件通过HTTP上传到网
评论
共有 条评论