溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

Geometry 集合接口

發(fā)布時(shí)間:2020-06-14 18:40:51 來(lái)源:網(wǎng)絡(luò) 閱讀:527 作者:劉朝樣 欄目:編程語(yǔ)言

IGeometryCollection
 

IGeometryCollection 接口被 Polygon,Polyline, Multipoint, Multipatch, Trangle,Trangle Strip,Trangle Fan 和 GeometryBag 所實(shí)現(xiàn)。


 

Geometry 屬性
通過(guò)一個(gè)索引值返回一個(gè)組成該幾何對(duì)象的某個(gè)子對(duì)象。

GeometryCount 屬性

返回組成該幾何對(duì)象的子對(duì)象的數(shù)目。

AddGeometry 方法
向一個(gè)幾何對(duì)象添加一個(gè)幾何對(duì)象,將子對(duì)象添加到幾何的指定索引值的位置。

AddGeometries 方法
向一個(gè)幾何對(duì)象添加多個(gè)幾何對(duì)象,將子對(duì)象數(shù)組添加到集合的最后。

在使用 AddGeometry 方法添加子對(duì)象到 Polygon 對(duì)象的過(guò)程中,如果子對(duì)象即 Ring 出現(xiàn)覆蓋現(xiàn)象,那么多邊形就沒(méi)有封閉或出現(xiàn)了包含關(guān)系,那么這個(gè) Polygon 就不是簡(jiǎn)單 Polygon,因此通過(guò) IGometryCollection 來(lái)創(chuàng)建一個(gè) Polygon 時(shí),需要使用 ITopologicalOperator 的 Simplify 方法保證其有效性

private IPolygon ConstructorPolygon(List<IRing> pRingList)
{
	try
	{
		IGeometryCollection pGCollection = new PolygonClass();
		object o = Type.Missing;

		for (int i = 0; i < pRingList.Count; i++)
		{
			// 通過(guò)IGeometryCollection接口的AddGeometry方法向Polygon對(duì)象中添加Ring子對(duì)象
			pGCollection.AddGeometry(pRingList[i], ref o, ref o);
		}

		// QI至ITopologicalOperator
		ITopologicalOperator pTopological = pGCollection as ITopologicalOperator;
		
		// 執(zhí)行Simplify操作
		pTopological.Simplify();

		IPolygon pPolygon = pGCollection as IPolygon;
		//返回Polygon對(duì)象
		return pPolygon;
	}
	catch (Exception Err)
	{
		return null;
	}
}
private IPolygon MergePolygons(IPolygon FirstPolygon, IPolygon SecondPolygon)
{
	try
	{
		// 創(chuàng)建一個(gè)Polygon對(duì)象
		IGeometryCollection pGCollection1 = new PolygonClass();
		IGeometryCollection pGCollection2 = FirstPolygon as IGeometryCollection;
		IGeometryCollection pGCollection3 = SecondPolygon as IGeometryCollection;

		// 添加FirstPolygon
		pGCollection1.AddGeometryCollection(pGCollection2);
		// 添加SecondPolygon
		pGCollection1.AddGeometryCollection(pGCollection3);

		// QI至ITopologicalOperator
		ITopologicalOperator pTopological = pGCollection1 as ITopologicalOperator;
		// 執(zhí)行Simplify操作
		pTopological.Simplify();

		//返回Polygon對(duì)象
		IPolygon pPolygon = pGCollection1 as IPolygon;
		return pPolygon;
	}
	catch (Exception Err)
	{
		return null;
	}
}


ISegmentCollection

 

ISegmentCollection 接口被 Path, Ring, Polyline 和 Polygon 四個(gè)類(lèi)實(shí)現(xiàn)。


IPointCollection
ISegmentCollection 可以被多個(gè)幾個(gè)對(duì)象類(lèi)所實(shí)現(xiàn),如 Multipoint, Path, Ring, Polyline, Polygon, Trangle,Trangle Strip,Trangle Fan, Multipatch.
 

 


 

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI