彩票走势图

VDF常见问题整理(四十三):如何从点中获取折线段?

翻译|使用教程|编辑:况鱼杰|2019-12-05 09:31:17.723|阅读 226 次

概述:本系列教程整理了VectorDraw Developer Framework(VDF)最常见问题,教程整理的很齐全,非常适合新手学习。本文将会展示单击折线的某处时如何获取折线的线段的操作。

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

相关链接:

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

VectorDraw Developer Framework试用版下载


问:

    单击折线的某处时如何获取折线的线段?

答:

    在版本7012.0.7中,已导出新方法vdgeo.GetPlineSegmentIndexFromPoint(对象点,对象[]顶点,bool isClosed,对象trusionVector)。

  • 点:世界坐标中的通过点。

  • 顶点:通常从pline.VertexList.Items获取的折线顶点数组。

  • isClosed:如果关闭则为True,打开则为False,不通过为False。

  • trusionVector:[X,Y,Z]的数组,它是一个垂直于折线平面的向量。通常我们从折线中获取它。如果不通过,它将获得[0,0,1]值。

    下面是一个示例,其中当我们单击折线附近的某个位置时,我们可以在鼠标按下事件中找到带有折线的起点和终点的线段,它更接近我们单击的点。

   function _vdmousedown(e) {

            if (e.target.ActiveAction().IsStarted()) return; //no user waiting action is active
            var entity = e.target.GetEntityFromPoint(e.xPix, e.yPix); //scan for an entity under the pick point
            if (!entity || entity._t !== vdConst.vdPolyline_code) return; //check if entity exist and is a polyline type
            var index = vdgeo.GetPlineSegmentIndexFromPoint([e.x, e.y, e.z], entity.VertexList.Items, entity.Flag == 1, entity.ExtrusionVector); //get the picked index near the pick point
            if (index == -1) return; 
            //an index was found.Print the result
            var sp, ep; 
            sp = entity.VertexList.Items[index]; 
            if (index == entity.VertexList.Items.length - 1) ep = entity.VertexList.Items[0];//in case passed polyline is closed
            else ep = entity.VertexList.Items[index + 1];
            alert("Segment " + index + "\nbetween first point X=" + sp[0].toFixed(3).toString() + "   Y=" + sp[1].toFixed(3).toString() + "   Z=" + sp[2].toFixed(3).toString() + "   Bulge=" + sp[3].toFixed(3).toString()
            + "\nand second point X=" + ep[0].toFixed(3).toString() + "   Y=" + ep[1].toFixed(3).toString() + "   Z=" + ep[2].toFixed(3).toString() + "   Bulge=" + ep[3].toFixed(3).toString()); 

      }

    对于以上问答,如果您有任何的疑惑都可以在评论区留言,我们会及时回复。此系列的问答教程我们会持续更新,如果您感兴趣,可以多多关注本教程。

热门文章推荐:


    如果您对想要购买正版授权VectorDraw Developer Framework(VDF),可以联系咨询相关问题。

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

慧聚IT


标签:

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

文章转载自:

为你推荐

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


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP