当前位置: 首页>>代码示例>>C++>>正文


C++ SurfaceMesh::Two_Cells_Are_Facet_Connected方法代码示例

本文整理汇总了C++中SurfaceMesh::Two_Cells_Are_Facet_Connected方法的典型用法代码示例。如果您正苦于以下问题:C++ SurfaceMesh::Two_Cells_Are_Facet_Connected方法的具体用法?C++ SurfaceMesh::Two_Cells_Are_Facet_Connected怎么用?C++ SurfaceMesh::Two_Cells_Are_Facet_Connected使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在SurfaceMesh的用法示例。


在下文中一共展示了SurfaceMesh::Two_Cells_Are_Facet_Connected方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: main


//.........这里部分代码省略.........
            break;
        }

    // display cells attached to a vertex
    VtxIndType V_IN = 5;
    TM.Display_Cells_Attached_To_Vertex(V_IN);
    cout << endl;

    // check attached cells against reference data
    std::vector<CellIndType> cell_ind_1, cell_ind_2;
    TM.Get_Cells_Attached_To_Vertex(V_IN, 0, cell_ind_1);
    TM.Get_Cells_Attached_To_Vertex(V_IN, 4, cell_ind_2);
    const CellIndType cell_ind_1_REF[4] = {0, 1, 2, 3};
    const CellIndType cell_ind_2_REF[3] = {4, 5, 6};
    for (unsigned int jj = 0; jj < cell_ind_1.size(); ++jj)
        if (cell_ind_1[jj]!=cell_ind_1_REF[jj])
        {
            cout << "Cell attachment data is incorrect!" << endl;
            OUTPUT_CODE = 4;
            break;
        }
    for (unsigned int jj = 0; jj < cell_ind_2.size(); ++jj)
        if (cell_ind_2[jj]!=cell_ind_2_REF[jj])
        {
            cout << "Cell attachment data is incorrect!" << endl;
            OUTPUT_CODE = 5;
            break;
        }

    // display if two cells are facet connected
    const  VtxIndType V1 = 5;
    const CellIndType C1 = 0;
    const CellIndType C2 = 4;
    TM.Display_Two_Cells_Are_Facet_Connected(V1, C1, C2);
    cout << endl;

    // check facet connected cells against reference data
    const bool CHK_Facet_Connected = TM.Two_Cells_Are_Facet_Connected(V1, C1, C2);
    const bool CHK_Facet_Connected_REF = false;
    if (CHK_Facet_Connected!=CHK_Facet_Connected_REF)
    {
        cout << "Facet connected cell data is incorrect!" << endl;
        OUTPUT_CODE = 6;
    }

    // display half-facets attached to given half-facet
    HalfFacetType TEST_attached;
    TEST_attached.Set(1,1);
    TM.Display_HalfFacets_Attached_To_HalfFacet(TEST_attached);
    cout << endl;

    // check attached half-facets against reference data
    HalfFacetType attached_REF[4];
    attached_REF[0].Set(1,1);
    attached_REF[1].Set(2,2);
    attached_REF[2].Set(3,0);
    attached_REF[3].Set(0,0);
    std::vector<HalfFacetType> attached;
    TM.Get_HalfFacets_Attached_To_HalfFacet(TEST_attached, attached);
    for (unsigned int jj = 0; jj < attached.size(); ++jj)
        if (!attached[jj].Equal(attached_REF[jj]))
        {
            cout << "HalfFacet attachment data is incorrect!" << endl;
            OUTPUT_CODE = 7;
            break;
        }
开发者ID:walkersw,项目名称:AHF,代码行数:67,代码来源:test_2d_non_manifold_2.cpp


注:本文中的SurfaceMesh::Two_Cells_Are_Facet_Connected方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。