本文整理汇总了C++中Body::getElement方法的典型用法代码示例。如果您正苦于以下问题:C++ Body::getElement方法的具体用法?C++ Body::getElement怎么用?C++ Body::getElement使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Body
的用法示例。
在下文中一共展示了Body::getElement方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: while
// Correct this!!!###!!!
int
BodyLayer::getMeshQuadGridN(int mesh_index, int element_id)
{
if ( !acceptsStructuredMesh() ) return 0;
if ( mesh_index < 0 || mesh_index >= model->getNofMeshes() )
return 0;
Parameter* param = NULL;
for (int i = 0; i < nofGridParameterIds; i++) {
if ( gridParameterMeshIndices[i] == mesh_index ) {
param = model->getParameterById(ECIF_GRID_PARAMETER, gridParameterIds[i]);
break;
}
}
if ( param == NULL ) {
return 0;
}
char value_buffer[1 + 128];
// Check if Quadrilateral mesh defined for the grid layer
if ( !( param->getFieldValueBySifName("Mesh Element Type", 128, value_buffer) &&
LibFront::ncEqual(value_buffer, "Quad")
)
) {
return 0;
}
Body* body = model->getBodyById(bodyId);
if (body == NULL) return 0;
// Check element index
int index = NO_INDEX;
int layer = 0; // Correct this !!!###!!!
int be_index = 0;
while (true) {
BodyElement* be = body->getElement(layer, be_index++);
if (be==NULL) break;
if ( be->Id() == element_id ) {
index++;
break;
}
}
if ( index == NO_INDEX ) {
return 0;
}
int n;
bool found = false;
if ( index == 0 || index == 2 ) {
found = param->getFieldValueBySifName("Mesh Quadgrid N1", n);
} else if ( index == 1 || index == 3 ) {
found = param->getFieldValueBySifName("Mesh Quadgrid N2", n);
} else {
return 0;
}
if (found) {
return n;
}
return 0;
}