本文整理汇总了C++中SurfaceMesh::Display_Two_Cells_Are_Facet_Connected方法的典型用法代码示例。如果您正苦于以下问题:C++ SurfaceMesh::Display_Two_Cells_Are_Facet_Connected方法的具体用法?C++ SurfaceMesh::Display_Two_Cells_Are_Facet_Connected怎么用?C++ SurfaceMesh::Display_Two_Cells_Are_Facet_Connected使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SurfaceMesh
的用法示例。
在下文中一共展示了SurfaceMesh::Display_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;
}