#include "moab/MeshTopoUtil.hpp"
#include "moab/Range.hpp"
#include "Internals.hpp"
#include "moab/Interface.hpp"
#include "moab/CN.hpp"
#include <cassert>
Go to the source code of this file.
|
| moab |
| Class representing axis-aligned bounding box.
|
|
|
#define | RR |
|
#define | ITERATE_RANGE(range, it) for( Range::iterator it = ( range ).begin(); ( it ) != ( range ).end(); ++( it ) ) |
|
#define | GET_CONNECT_DECL(ent, connect, num_connect) |
|
#define | GET_CONNECT(ent, connect, num_connect) |
|
#define | TC |
|
◆ GET_CONNECT
#define GET_CONNECT |
( |
|
ent, |
|
|
|
connect, |
|
|
|
num_connect |
|
) |
| |
Value: { \
ErrorCode connect_result = mbImpl->get_connectivity( ent, connect, num_connect ); \
if(
MB_SUCCESS != connect_result )
return connect_result; \
}
◆ GET_CONNECT_DECL
#define GET_CONNECT_DECL |
( |
|
ent, |
|
|
|
connect, |
|
|
|
num_connect |
|
) |
| |
Value:
int num_connect = 0; \
{ \
ErrorCode connect_result = mbImpl->get_connectivity( ent, connect, num_connect ); \
if(
MB_SUCCESS != connect_result )
return connect_result; \
}
◆ ITERATE_RANGE
#define ITERATE_RANGE |
( |
|
range, |
|
|
|
it |
|
) |
| for( Range::iterator it = ( range ).begin(); ( it ) != ( range ).end(); ++( it ) ) |
◆ RR
Value:MOAB, a Mesh-Oriented datABase, is a software component for creating, storing and accessing finite element mesh data.
Copyright 2004 Sandia Corporation. Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains certain rights in this software.
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.
Definition at line 28 of file MeshTopoUtil.cpp.
◆ TC
Value:
{ \
result = tmp_result; \
continue; \
}