VDF常見問題整理(二十八):如何對多個頂點進行圓角處理?
VectorDraw Developer Framework(VDF)是一個用于應(yīng)用程序可視化的圖形引擎庫。有了VDF提供的功能,您可以輕松地創(chuàng)建、編輯、管理、輸出、輸入和打印2D和3D圖形文件。
VectorDraw Developer Framework試用版下載
點開本篇文章,是否對矢量圖形工具感興趣呢?來看看最新的矢量圖形工具測評吧!點擊此處>>即可直達哦!
問:
我正在創(chuàng)建帶有某些頂點的折線,并希望使用FilletRadiousAtIndex方法對圓角進行切角,例如段0、1和2,但是我的代碼無法正常工作。我怎樣才能做到這一點 ?
答:
FilletRadiousAtIndex方法如果成功,則將向折線添加一個新頂點,并且(可能是封閉的)它也可能改變點的順序。因此,像您發(fā)送的代碼那樣的代碼將無法工作,因為首次調(diào)用FilletRadiousAtIndex會改變點的順序,因為需要添加新的點,因此,您不能使用像這樣的代碼:
poly.FilletRadiusAtIndex(radious,0); poly.FilletRadiusAtIndex(radious,1); poly.FilletRadiusAtIndex(radious,2);
您需要遵循以下代碼中的其他方法,請參見以下代碼:
private void button5_Click(object sender, EventArgs e) { vdDocument doc = vdFramed1.BaseControl.ActiveDocument; doc.New(); doc.ZoomWindow(new gPoint(0, -10), new gPoint(240, 240)); Vertexes verts = new Vertexes(); verts.Add(40, 0, 0, 0); verts.Add(40, 200, 0, 0); verts.Add(20, 180, 0, 0); verts.Add(20, 230, 0, 0); verts.Add(200, 230, 0, 0); verts.Add(200, 180, 0, 0); verts.Add(180, 200, 0, 0); verts.Add(180, 0, 0, 0); vdPolyline poly = new vdPolyline(doc, verts); doc.Model.Entities.AddItem(poly); poly.Flag = VectorDraw.Professional.Constants.VdConstPlineFlag.PlFlagCLOSE; poly.Update(); double R1 = 9.0d; double R2 = 6.0d; double R3 = 3.0d; // alter these as you like gPoints pts_to_Fillet = new gPoints(); // to keep the “original” indexes that you need to fillet pts_to_Fillet.Add(new gPoint(poly.VertexList[0] as gPoint));// pt 0 -> R1 pts_to_Fillet.Add(new gPoint(poly.VertexList[2] as gPoint));// pt 1 -> R2 pts_to_Fillet.Add(new gPoint(poly.VertexList[3] as gPoint));// pt 2 -> R3 pts_to_Fillet.Add(new gPoint(poly.VertexList[4] as gPoint));// pt 3 -> R3 pts_to_Fillet.Add(new gPoint(poly.VertexList[5] as gPoint));// pt 4 -> R2 pts_to_Fillet.Add(new gPoint(poly.VertexList[7] as gPoint));// pt 5 -> R1 for (int i = 0; i < pts_to_Fillet.Count; i++) { double radious = 9.0; if (i == 0 || i == 5) radious = R1; else if (i == 1 || i == 4) radious = R2; else if (i == 2 || i == 3) radious = R3; int index_pl = poly.VertexList.FindVertexPoint(pts_to_Fillet[i]); // get the new index of the previously stored if (index_pl > -1) { poly.FilletRadiusAtIndex(radious, index_pl); // and fillet it poly.Update(); } else MessageBox.Show("point not found on polyline"); } poly.Invalidate(); }
對于以上問答,如果您有任何的疑惑都可以在評論區(qū)留言,我們會及時回復(fù)。此系列的問答教程我們會持續(xù)更新,如果您感興趣,可以多多關(guān)注本教程。
相關(guān)資料推薦:
點擊此處還有VectorDraw Developer Framework的demo示例等著你來體驗哦!
如果您對想要購買正版授權(quán)VectorDraw Developer Framework(VDF),可以聯(lián)系在線客服>>咨詢相關(guān)問題。
關(guān)注慧聚IT微信公眾號 ???,了解產(chǎn)品的最新動態(tài)及最新資訊。