-
大小: 0.15M文件类型: .zip金币: 1下载: 0 次发布日期: 2020-12-26
- 语言: C#
- 标签:
资源简介
在pictureBox中进行面裁剪线以及最短路径分析。其中面裁剪线这个功能是通过鼠标画点线面,而最短路径分析,则是通过在dataGridView中输入起点、终点坐标,以及权重。在pictureBox中显示网络图,并动态生成某点到某点的最短路径。
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
//using ESRI.ArcGIS.Geometry;
namespace GraphicsExample
{
public partial class Form1 : Form
{
private List m_Points;//多边形点
private List k_Points;//线段点
private List p_Points = new List();//交点
private List tempPoints=new List();//临时存放判断点是否在多边形内
private List mark = new List();//存放下标
private Graphics grp;
private Bitmap bmp;
private Pen pen;
private Font sfont;
Point intersection = new Point();//交点
private string m_Geotype;
int r;
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2015-05-12 10:22 GraphicsExample\
目录 0 2015-06-25 17:33 GraphicsExample\GraphicsExample\
文件 887 2015-03-30 13:58 GraphicsExample\GraphicsExample.sln
文件 31232 2015-12-01 21:02 GraphicsExample\GraphicsExample.suo
文件 20992 2015-04-01 09:48 GraphicsExample\GraphicsExample.v12.suo
目录 0 2015-04-01 09:47 GraphicsExample\GraphicsExample\bin\
目录 0 2015-05-11 11:04 GraphicsExample\GraphicsExample\bin\Debug\
文件 23040 2015-12-01 20:27 GraphicsExample\GraphicsExample\bin\Debug\GraphicsExample.exe
文件 48640 2015-12-01 20:27 GraphicsExample\GraphicsExample\bin\Debug\GraphicsExample.pdb
文件 11600 2015-12-01 20:28 GraphicsExample\GraphicsExample\bin\Debug\GraphicsExample.vshost.exe
文件 490 2009-08-31 00:40 GraphicsExample\GraphicsExample\bin\Debug\GraphicsExample.vshost.exe.manifest
文件 20473 2015-06-29 21:00 GraphicsExample\GraphicsExample\Form1.cs
文件 7499 2015-06-29 21:00 GraphicsExample\GraphicsExample\Form1.Designer.cs
文件 6015 2015-06-29 16:07 GraphicsExample\GraphicsExample\Form1.resx
文件 4220 2015-06-25 16:44 GraphicsExample\GraphicsExample\GraphicsExample.csproj
文件 13338 2015-12-01 20:27 GraphicsExample\GraphicsExample\GrawNet.cs
文件 8061 2015-12-01 19:06 GraphicsExample\GraphicsExample\GrawNet.Designer.cs
文件 6366 2015-12-01 19:06 GraphicsExample\GraphicsExample\GrawNet.resx
目录 0 2015-04-01 09:47 GraphicsExample\GraphicsExample\obj\
目录 0 2015-04-01 09:47 GraphicsExample\GraphicsExample\obj\x86\
目录 0 2015-12-01 20:27 GraphicsExample\GraphicsExample\obj\x86\Debug\
文件 5359 2015-05-12 10:23 GraphicsExample\GraphicsExample\obj\x86\Debug\DesignTimeResolveAssemblyReferences.cache
文件 6449 2015-12-01 20:27 GraphicsExample\GraphicsExample\obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache
文件 336 2015-03-30 17:32 GraphicsExample\GraphicsExample\obj\x86\Debug\GenerateResource.read.1.tlog
文件 802 2015-03-30 17:32 GraphicsExample\GraphicsExample\obj\x86\Debug\GenerateResource.write.1.tlog
文件 2963 2015-12-01 20:28 GraphicsExample\GraphicsExample\obj\x86\Debug\GraphicsExample.csproj.FileListAbsolute.txt
文件 1035 2015-12-01 20:27 GraphicsExample\GraphicsExample\obj\x86\Debug\GraphicsExample.csproj.GenerateResource.Cache
文件 28457 2015-05-12 10:55 GraphicsExample\GraphicsExample\obj\x86\Debug\GraphicsExample.csprojResolveAssemblyReference.cache
文件 23040 2015-12-01 20:27 GraphicsExample\GraphicsExample\obj\x86\Debug\GraphicsExample.exe
文件 180 2015-06-29 16:07 GraphicsExample\GraphicsExample\obj\x86\Debug\GraphicsExample.Form1.resources
文件 180 2015-12-01 20:27 GraphicsExample\GraphicsExample\obj\x86\Debug\GraphicsExample.GrawNet.resources
............此处省略43个文件信息
- 上一篇:WPF 图片旋转效果(非常炫)
- 下一篇:基于halcon的二维码识别
评论
共有 条评论