Welcome![Sign In][Sign Up]
Location:
Search - MyGraph

Search list

[GUI DevelopMyGraph

Description: 一个图表分析显示控件.分析结果图具有立体效果,并且自动切换柱状图和曲线图,可全面设置图的各种属性。-a control chart analysis. Results of the analysis with a three-dimensional map effects, and automatic switching column and graph can be set up comprehensive plans of the various attributes.
Platform: | Size: 20716 | Author: 李刚 | Hits:

[GUI DevelopMyGraph

Description: 一个图表分析显示控件.分析结果图具有立体效果,并且自动切换柱状图和曲线图,可全面设置图的各种属性。-a control chart analysis. Results of the analysis with a three-dimensional map effects, and automatic switching column and graph can be set up comprehensive plans of the various attributes.
Platform: | Size: 20480 | Author: 李刚 | Hits:

[Data structsMyGraph

Description: 此程序可实现一定的功能,用此程序可实现一定的恶化图-This process can achieve a certain degree of functionality, can be achieved with this procedure has deteriorated map
Platform: | Size: 20480 | Author: caizc | Hits:

[GUI Developmygraph

Description: 在Visual Studio 2008下使用OpenGL图形技术绘制钻石图案的代码-in the Visual Studio 2008 ,using OpenGL for graphiing the diamond.
Platform: | Size: 21504 | Author: 何林 | Hits:

[Windows DevelopmyGraph

Description: 波形数据显示控件,类似NI的PlotXY。-Waveform Data Display Controls
Platform: | Size: 38912 | Author: wqhua | Hits:

[AlgorithmmyGraph

Description: Search Graph in 2 dimension array
Platform: | Size: 1024 | Author: Ilis | Hits:

[JSP/JavaMygraph

Description: java做的绘图板! -java for drawing!
Platform: | Size: 37888 | Author: 李明 | Hits:

[GDI-BitmapMyGraph

Description: 一般的完成画图的小功能程序,vc++实现-graph
Platform: | Size: 28672 | Author: ll | Hits:

[Delphi VCLMyGraph

Description: 用Delphi实现图片浏览,该程序可用鼠标绘制多种图形,课设置画笔颜色、画刷填充方式。-Using Delphi to achieve image browsing, the program used the mouse to draw many different graphics, course set the pen color, fill the brush method.
Platform: | Size: 10240 | Author: engma | Hits:

[Graph programMyGraphic

Description: 加入新图形的步骤 1、在GraphRecord单元 定义结构体 2、在MyGraph单元的集合体(TClassGraph)中 加入该图形 3、MyGraph单元的private声明该图形的链表,Create中创建,Destory中释放 4、MouseUp事件中加入链表 5、MouseMove事件中移动图形 6、DrawGraph过程中加入画图 7、Clear 加入清空 8、preDel过程 9、preFill过程 10、preMove过程 11、SaveToFile过程 12、LoadFromFile过程-Add new graphics Step 1, the definition of structure in the GraphRecord unit 2, a collection of units in MyGraph (TClassGraph) added to the graph 3, MyGraph unit private statements of the graphics list, Create to create, Destory release 4, MouseUp add event list 5, MouseMove event of mobile graphics 6, DrawGraph the process of adding paint 7, Clear adding empty 8, preDel process 9, preFill process 10, preMove process 11, SaveToFile process 12, LoadFromFile process
Platform: | Size: 343040 | Author: designer | Hits:

[DirextXsavegraph

Description: this a visual c++ 2008 project witch makes a directshow graph and saves it as c:\mygraph.grf- this is a visual c++ 2008 project witch makes a directshow graph and saves it as c:\mygraph.grf
Platform: | Size: 12288 | Author: Kashif | Hits:

[CSharpMyGraph

Description:
Platform: | Size: 38912 | Author: chenyingjie2012 | Hits:

[Dialog_WindowmyGraph

Description: mfc界面编程,将机器人控制的基本功能,实现界面控制-mfc programming interface, basic functions of the robot control, interface control to achieve
Platform: | Size: 18890752 | Author: 宇志远 | Hits:

[Graph DrawingMyGraph

Description: 简单的绘图程序,在view视图类绘制直线、曲线、矩形、圆角矩形、椭圆形等常用的图像,对初学者有一定的帮助-A simple drawing program, draw a straight line in the view the view class, curves, rectangles, rounded rectangles, ovals and other common image, there is some help for beginners
Platform: | Size: 83968 | Author: wang aixue | Hits:

[GDI-BitmapMyGraph

Description: 自己写过的代码 MyGraph[曲线动画].rar-Wrote their own code MyGraph [curve animation]. Rar
Platform: | Size: 347136 | Author: 陈国辉 | Hits:

[Data structsMyGraph

Description: 根据严蔚敏一数据结构教材实现的图的邻接表及邻接矩阵存储方式,及常见的图算法。-Yan Wei Min a data structure of materials to achieve the adjacency table and the adjacency matrix is stored, and graph algorithms.
Platform: | Size: 24576 | Author: 冬冬 | Hits:

[Data structsMYGRAPH

Description: 数据结构图的建立,有图遍历,最小二叉树生成- English Spanish Arabic The establishment of a data structure diagram, graph traversal, minimum binary tree generated
Platform: | Size: 3072 | Author: label | Hits:

[e-languagenew

Description: 二维坐标系上有一些炸弹,每个炸弹有x,y坐标和爆炸后波及的范围r,这个r指的是跟自己曼哈顿距离r以内的点 就类似于扫雷那样,一个炸弹爆炸可能引起一片一片的炸弹炸出去 然后有一些询问,问点燃某个炸弹后会有多少个炸弹爆炸 已经炸过的就不算了 -#include <iostream> #include <vector> #include <algorithm> #include <cstdio> #include <cmath> #include <string> #include <cstring> #include <cmath> #include <ctime> using namespace std const int maxn = 110005 const int inf = 2000000005 struct NODE{ int y, dis NODE(){ } NODE(int _y, int _dis){ y = _y dis = _dis } bool operator <(const NODE &tmp)const{ if(y == tmp.y) return dis < tmp.dis return y < tmp.y } } struct POINT{ int x, y, dis POINT() { } POINT(int _x, int _y, int _dis){ x = _x y = _y dis = _dis } }df[maxn], myque[1111111] int n, m, hash[maxn], num vector<NODE>mygraph[maxn] void init(){ num = 0 for(int i = 0 i < maxn i++) mygraph[i].clear() } void readdata(){
Platform: | Size: 1024 | Author: 夏超 | Hits:

[GDI-Bitmapmygraph

Description: 校园导航系统 以某一校园的平面图为例,运用图的搜索算法实现简单的导航功能-Graph Campus Navigation
Platform: | Size: 11031552 | Author: 王辉 | Hits:

[JSP/JavaMyGraph

Description: example how to draw a graph in java
Platform: | Size: 1024 | Author: dimitrios | Hits:
« 12 »

CodeBus www.codebus.net