彩票走势图

VDF常见问题整理(十四):如何围绕某个点旋转折线中的顶点?

翻译|使用教程|编辑:况鱼杰|2019-09-03 13:51:51.633|阅读 235 次

概述:本系列教程整理了VectorDraw Developer Framework(VDF)最常见问题,教程整理的很齐全,非常适合新手学习,本节教程将会介绍如何围绕某个点旋转折线中的顶点。

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

相关链接:

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

VectorDraw Developer Framework试用版下载


问:

    如何(通过代码)可以围绕某个点旋转折线中的某些顶点,保持其他顶点相同?  

答:

这个问题非常简单,您可以尝试以下代码:

      private void MyButton_Click(object sender, EventArgs e)
        {
            vdDocument doc = vdFramedControl1.BaseControl.ActiveDocument; doc.New();
            Vertexes vrts = new Vertexes();
            vrts.Add(1,1,0,0);vrts.Add(1,4,0,0);vrts.Add(4,4,0,0);vrts.Add(5,3,0,0);
            vdPolyline pl = new vdPolyline(doc, vrts);
            doc.Model.Entities.AddItem(pl);
            pl.Invalidate();
            //--------------- created the polyline ---------
           
            
            // rotate it for 45 degrees anti-clockwise around vertex[1]
            
            Vertexes orig_vert = new Vertexes(pl.VertexList);//get the vertex list of the polyline that will be changed
            gPoint pt1 = new gPoint(orig_vert[1] as gPoint);
       
            // Vertexes from Item 2 and above will change
            Vertexes keep = new Vertexes();
            keep.Add(new Vertex(orig_vert[0]));
            keep.Add(new Vertex(orig_vert[1]));

            double orig_angle = pt1.GetAngle( orig_vert[2] as gPoint); // new angle
            orig_angle += VectorDraw.Geometry.Globals.DegreesToRadians(45.0d);

            Matrix mat = new Matrix();
            mat.TranslateMatrix(-1.0d * pt1);
            mat.RotateZMatrix(orig_angle);
            mat.TranslateMatrix(pt1);
            mat.Transform(orig_vert); // this will produce the new vertexes

            for (int i = 0; i < 2; i++)
            {
                orig_vert[i] = keep[i]; // restore the vertexes that didn't changed
            }

            pl.VertexList = orig_vert;
            pl.Update();
            pl.Invalidate();

        }

相关资料推荐:

VectorDraw Developer Framework(VDF)示例


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

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

1561953111.jpg


标签:

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

文章转载自:

为你推荐

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


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP