本文整理汇总了C++中TupleList::find方法的典型用法代码示例。如果您正苦于以下问题:C++ TupleList::find方法的具体用法?C++ TupleList::find怎么用?C++ TupleList::find使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TupleList
的用法示例。
在下文中一共展示了TupleList::find方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: make_faces
ErrorCode ReadCCMIO::make_faces(int *farray,
TupleList &vert_map,
std::vector<EntityHandle> &new_faces, int num_faces)
{
std::vector<EntityHandle> verts;
ErrorCode tmp_rval = MB_SUCCESS, rval = MB_SUCCESS;
for (int i = 0; i < num_faces; i++) {
int num_verts = *farray++;
verts.resize(num_verts);
// fill in connectivity by looking up by gid in vert tuple_list
for (int j = 0; j < num_verts; j++) {
#ifdef TUPLE_LIST
int tindex = vert_map.find(1, farray[j]);
if (-1 == tindex) {
tmp_rval = MB_FAILURE;
break;
}
verts[j] = vert_map.get_ulong(tindex, 0);
#else
verts[j] = (vert_map[farray[j]])[0];
#endif
}
farray += num_verts;
if (MB_SUCCESS == tmp_rval) {
// make face
EntityType ftype = (3 == num_verts ? MBTRI :
(4 == num_verts ? MBQUAD : MBPOLYGON));
EntityHandle faceh;
tmp_rval = mbImpl->create_element(ftype, &verts[0], num_verts, faceh);
if (faceh) new_faces.push_back(faceh);
}
if (MB_SUCCESS != tmp_rval) rval = tmp_rval;
}
return rval;
}