使用opentk的Delaunay三角剖分

时间:2017-05-03 08:05:05

标签: opentk delaunay

我正在使用openTK库来加载xyz文件,以便将其转换为3d网格。当我使用这个库的三角测量工具时,我有一个三角形未连接的对象。Original point clouds Result of triangulation

我使用了以下代码:

        string fileNameLong = "bunny.xyz";
        vertices = IOUtils.ReadXYZFile_ToVertices(fileNameLong, false);
        Vertices.SetColorOfListTo(vertices, new Vector3d(1, 0, 0));
        Model3D myModel = new Model3D("bunny");
        myModel.VertexList = vertices;

        myModel.CalculateNormals_Triangulation();

        this.CreateLinesForNormals(myModel);


        ShowModel_WithLines(myModel, true);
        Model3D.Save_OBJ(myModel, path, "bunny_Triangulated.obj");

0 个答案:

没有答案