本文整理汇总了C++中SurfaceMesh::Display_Vtx2HalfFacets方法的典型用法代码示例。如果您正苦于以下问题:C++ SurfaceMesh::Display_Vtx2HalfFacets方法的具体用法?C++ SurfaceMesh::Display_Vtx2HalfFacets怎么用?C++ SurfaceMesh::Display_Vtx2HalfFacets使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SurfaceMesh
的用法示例。
在下文中一共展示了SurfaceMesh::Display_Vtx2HalfFacets方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: main
//.........这里部分代码省略.........
Cell_REF[ 3].Set(1,5,hf.Set());
Cell_REF[ 3].Set(2,1,hf.Set());
// Cell #5
Cell_REF[ 4].Set(0,9,hf.Set());
Cell_REF[ 4].Set(1,6,hf.Set(5,2));
Cell_REF[ 4].Set(2,5,hf.Set());
// Cell #6
Cell_REF[ 5].Set(0,9,hf.Set());
Cell_REF[ 5].Set(1,5,hf.Set());
Cell_REF[ 5].Set(2,7,hf.Set(6,0));
// Cell #7
Cell_REF[ 6].Set(0,8,hf.Set(4,1));
Cell_REF[ 6].Set(1,9,hf.Set());
Cell_REF[ 6].Set(2,5,hf.Set());
// error check
for (CellIndType cc = 0; cc < TM.Num_Cells(); ++cc)
{
const VtxIndType* C_vtx = NULL;
const HalfFacetType* C_hf = NULL;
TM.Get_Cell(cc, C_vtx, C_hf);
if (!Cell_REF[cc].Equal(C_vtx, C_hf))
{
cout << "Cell connectivity (and sibling half-facets) is incorrect!" << endl;
OUTPUT_CODE = 2;
break;
}
}
// generate the Vtx2HalfFacets data struct
TM.Build_Vtx2HalfFacets_DEBUG();
TM.Close(); // we can close it now, i.e. no more modifications
// now display half-facets attached to vertices for final data structure
TM.Display_Vtx2HalfFacets();
cout << endl;
// check 'Vtx2HalfFacets' against reference data
VtxHalfFacetType Vtx2HalfFacets_REF[11];
Vtx2HalfFacets_REF[ 0].Set(0,0,2);
Vtx2HalfFacets_REF[ 1].Set(1,3,1);
Vtx2HalfFacets_REF[ 2].Set(2,1,2);
Vtx2HalfFacets_REF[ 3].Set(3,2,1);
Vtx2HalfFacets_REF[ 4].Set(4,3,2);
Vtx2HalfFacets_REF[ 5].Set(5,3,2);
Vtx2HalfFacets_REF[ 6].Set(5,6,1);
Vtx2HalfFacets_REF[ 7].Set(6,4,2);
Vtx2HalfFacets_REF[ 8].Set(7,5,1);
Vtx2HalfFacets_REF[ 9].Set(8,6,2);
Vtx2HalfFacets_REF[10].Set(9,6,2);
// error check
const std::vector<VtxHalfFacetType>& c_Vtx2HF = TM.Get_Vtx2HalfFacets().Get_VtxMap();
for (VtxIndType jj = 0; jj < c_Vtx2HF.size(); ++jj)
if (!c_Vtx2HF[jj].Equal(Vtx2HalfFacets_REF[jj]))
{
cout << "'Vtx2HalfFacets' data is incorrect!" << endl;
OUTPUT_CODE = 3;
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;