彩票走势图

VDF常见问题整理(八):如何排除GroundSurface对象的三角形区域?

翻译|使用教程|编辑:况鱼杰|2019-08-19 14:55:27.643|阅读 784 次

概述:本系列教程整理了VectorDraw Developer Framework(VDF)最常见问题,教程整理的很齐全,非常适合新手学习,本节教程将会介绍如何排除GroundSurface对象的三角形区域。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

相关链接:

    VectorDraw Developer Framework(VDF)是一个用于应用程序可视化的图形引擎库。有了VDF提供的功能,您可以轻松地创建、编辑、管理、输出、输入和打印2D和3D图形文件。   

VectorDraw Developer Framework试用版下载


    点开本篇文章,是否对矢量图形工具感兴趣呢?来看看最新的矢量图形工具测评吧!点击此处>>即可直达哦!

问:

    如何排除GroundSurface对象的三角形区域?

答:

    在6022中添加了新方法VectorDraw.Geometry.Delaunay.Triangulate和GetSliceRegionPoints of gPoints。

public static gTriangles Triangulate(gPoints points,ushort precision)

  • 使用Delaunay算法对给定点进行三角测量。

  • 要点:输入样本点进行三角测量。

  • precision:传递点的小数精度。

  • 返回:gTriangles集合。

gPoints GetSliceRegionPoints(vdArray

    返回SliceRegions中所有点的集合,区域之间的所有交叉点以及区域段与此Triangle集合之间的所有交集。

  • SliceRegions:区域集合。

  • precision:传递点的小数精度。

  • 返回属于在此集合的三角形上投影的SliceRegions的所有点的集合。

    从三角测量中排除区域的示例

   //create an array of points that represent a mountain
                gPoints pts = new gPoints();
                
                //add points from a 16 segments divided circle with radius 10 and elevation 50
                pts += Globals.GetArcSamplePoints(16, 10, 0.0, Globals.VD_TWOPI, 50);
                //add points from a 32 segments divided circle with radius 20 and elevation 40
                pts += Globals.GetArcSamplePoints(32, 20, 0.0, Globals.VD_TWOPI,40);
                //add points from a 48 segments divided circle with radius 30 and elevation 30
                pts += Globals.GetArcSamplePoints(48, 30, 0.0, Globals.VD_TWOPI,30);
                //add points from a 64 segments divided circle with radius 40 and elevation 20
                pts += Globals.GetArcSamplePoints(64, 40, 0.0, Globals.VD_TWOPI,20);
                //add points from a 78 segments divided circle with radius 50 and elevation 10
                pts += Globals.GetArcSamplePoints(78, 50, 0.0, Globals.VD_TWOPI,10);
                //add a point at the top of the mountain.
                pts += new gPoint(0, 0, 60);

                //create an array of points that defines a region that will not contains triangles inside
                gPoints SliceRegionInside = new gPoints(new gPoint[] { new gPoint(-18, 3), new gPoint(-18, 18), new gPoint(-3, 18), new gPoint(-3, 3), new gPoint(-18, 3) });
                //create an array of points that defines a region that will not contains triangles outside it.
                gPoints SliceRegionOutside = new gPoints(new gPoint[] { new gPoint(-35, -35), new gPoint(-35, 35), new gPoint(35, 35), new gPoint(35, -35), new gPoint(-35, -35) });

                //add all the regions into a collection
                vdArray SliceRegions = new vdArray(new gPoints[] { SliceRegionInside, SliceRegionOutside });

                ushort percision = 8;
                //calculate the result triangles using decimal precision 8 for passed points.
                gTriangles newtriangles = Delaunay.Triangulate(pts, percision);
                //calculate all intersection points between SliceRegions and triangles.
                //Z values of intersections are projected on triangles collection.
                gPoints intPts = newtriangles.GetSliceRegionPoints(SliceRegions, percision);
                //re-calculate the triangles using the basic input points and the calculated intersections.
                newtriangles = Delaunay.Triangulate(pts + intPts, percision);
                
                //remove the triangles according to region usage.
                gTriangles RemovedInsideTriangles = newtriangles.RemoveInsideTriangles(SliceRegionInside);
                gTriangles RemovedOutsideTriangles = newtriangles.RemoveOutsideTriangles(SliceRegionOutside);

                //create a new ground sourface with the calculating triangles.
                vdGroundSurface gf = new vdGroundSurface();
                gf.SetUnRegisterDocument(doc);
                gf.setDocumentDefaults();
                gf.Points = pts;
                gf.SelectUserTriangles(newtriangles);
                gf.DispMode = vdGroundSurface.DisplayMode.Triangle;
                doc.Model.Entities.AddItem(gf);

                doc.CommandAction.Zoom("e", null, null);

关注慧聚IT微信公众号 ☟☟☟,了解产品的最新动态及最新资讯。

dd2629f30d553d56ccaf7164fdcb784e-sz_28327.webp.jpg

8月省钱式嗨购|Office 365三大版本免费送,云端办公更畅快!




标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn

文章转载自:

为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP