当前位置:网站首页>ArcEngine line to face conversion
ArcEngine line to face conversion
2022-04-22 14:26:00 【ShirmyMao】
Line to face conversion
Line to plane
/// <summary>
/// Line to plane
/// </summary>
/// <param name="geo"></param>
/// <returns></returns>
public static IPolygon PolylineToPolygon(object geo)
{
ISegmentCollection polygons = new PolygonClass();
var segment = geo as ISegmentCollection;
polygons.AddSegmentCollection(segment);
var polyLine = polygons as IPolygon;
return polyLine;
}
Face to face line
/// <summary>
/// Face to face line
/// </summary>
/// <param name="geo"></param>
/// <returns></returns>
public static IPolyline PolygonToPolyline(object geo)
{
ISegmentCollection lines = new PolylineClass();
var segment = geo as ISegmentCollection;
lines.AddSegmentCollection(segment);
var polyLine = lines as IPolyline;
return polyLine;
}
版权声明
本文为[ShirmyMao]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/04/202204221421352365.html
边栏推荐
- HashTable哈希表练习查找插入删除217、349 、202、287、290、532、205、128
- CorelDRAW插件-CPG插件开发-环境搭建-VS2017-TLB文件-CDR插件
- npm install --save 和 npm install --save-dev区别
- Borui data and F5 jointly build the full data chain DNA of financial technology from code to user
- Ladder race -- l2-004 is this a binary search tree? (25 points) (recursive)
- 双指针快慢指针||快乐数、寻找重复数202、287、|141、142、143、234、457
- ArcEngine read raster flash back
- String inversion exercises 344, 541, 557, 151
- 知识就是力量,但更重要的是运用知识的能力---网页端微信扫码支付-技术设计
- C compile BS interface environment deployment and development and debugging methods
猜你喜欢

With Feixiang, this task management artifact, the work is more convenient and efficient

Principle analysis of ArcEngine print view and layout view

MapReduce高级应用——全排序和二次排序

In depth analysis of volatile principle

图的遍历 深度优先DFS 广度优先BFS

spark代码 spark-submit提交yarn-cluster模式

Tencent build project image

CRM系统改善客户体验的方法

Knowledge is power, but more importantly, the ability to use knowledge - wechat code scanning payment on the web - technical design

@Resource与构造函数踩坑
随机推荐
Deep understanding of read-write lock reentrantreadwritelock and concurrent container copyonwritearraylist
2020 popular whole network series: This is a very suitable Android advanced - interview key and difficult data notes for collection and collection! Continuously update the high-quality interview links
Completion of minmao e-commerce in 10 days - Implementation of user module (2nd day)
Binarytree exercises constructing binary trees from traversal sequences of front order and middle order, middle order and back order | reconstructing binary trees 654, 105 and 106
TopK
Hashtable hash table practice finding, inserting, deleting 217, 349, 202, 287, 290, 532, 205, 128
10天完成民猫电商毕设——用户模块实现(2nd day)
Binary tree practice binary tree traversal recursion 257, 100, 222, 101, 226, 437, 563, 617, 572, 543, |687
npm install --save 和 npm install --save-dev区别
@Resources and constructors
深入剖析Lock与AQS
HashTable哈希表与索引1、599、219
Ladder race -- l2-004 is this a binary search tree? (25 points) (recursive)
Codeforces Round #782 (Div. 2) D. Reverse Sort Sum
做好安全测试的方法
Get the sum of a value in each item object in the array (use of reduce)
Error unable to access jarfile solution
Cloudera manager ha mode construction
应用随机过程09:离散时间鞅
天梯赛--L2-003 月饼 (25 分)