您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關C#操作Styline二次開發實現畫線功能的案例的內容。小編覺得挺實用的,因此分享給大家做個參考。一起跟隨小編過來看看吧。
c#操作styline模型左鍵點擊模型獲取坐標,完成畫線操作。
1:鼠標點擊模型事件
List<IPosition66> pos = new List<IPosition66>(); private bool Sgworld_OnLButtonClicked(int Flags, int X, int Y) { var sgworld = new SGWorld66(); var postioninfo = sgworld.Window.PixelToWorld(X, Y); IPosition66 ss = postioninfo.Position; ss.X = postioninfo.Position.X; ss.Y = postioninfo.Position.Y; pos.Add(ss); return false; }
2:操作畫線
string tMsg = String.Empty; ILinearRing cRing = null; IGeometry cPolygonGeometry = null; ITerrainPolyline66 cpolyo = null; //創建實例 //MessageBox.Show(String.Format("X:{0}\r\nY:{1}", posl[i].PosX, posl[i].PosX)); var sgworld = new SGWorld66(); List<IPosition66> posl = pos; int sin = 0; sin = posl.Count*3; double[] cVerticesArray = new double[sin]; //獲取坐標值 for (int i = 0; i < posl.Count; i++) { cVerticesArray[i*3] = posl[i].X; cVerticesArray[i*3+1] = posl[i].Y; cVerticesArray[i * 3 + 2] = posl[i].Altitude; } { cRing = sgworld.Creator.GeometryCreator.CreateLinearRingGeometry(cVerticesArray); cPolygonGeometry = sgworld.Creator.GeometryCreator.CreateLinearRingGeometry(cRing); } { uint nLineColor = 0xFF00FF00; //顏色樣式 AltitudeTypeCode AltitudeType = AltitudeTypeCode.ATC_ON_TERRAIN; // D2. Create polygon cpolyo = sgworld.Creator.CreatePolyline(cPolygonGeometry, nLineColor, AltitudeType, string.Empty, "Polygon"); ///注意坐標 sgworld.Window.PixelToWorld(sgworld.Window.Rect.Left, sgworld.Window.Rect.Top, WorldPointType.WPT_TERRAIN); }
感謝各位的閱讀!關于C#操作Styline二次開發實現畫線功能的案例就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。