MOAB: Mesh Oriented datABase
(version 5.4.1)
|
#include "ReadOBJ.hpp"
#include <iostream>
#include <sstream>
#include <fstream>
#include <vector>
#include <cstdlib>
#include <map>
#include <cassert>
#include <cmath>
#include "moab/Core.hpp"
#include "moab/Interface.hpp"
#include "moab/ReadUtilIface.hpp"
#include "Internals.hpp"
#include "moab/Range.hpp"
#include "moab/CartVect.hpp"
#include "moab/FileOptions.hpp"
#include "FileTokenizer.hpp"
#include "MBTagConventions.hpp"
#include "moab/CN.hpp"
#include "moab/GeomTopoTool.hpp"
Go to the source code of this file.
Namespaces | |
namespace | moab |
Class representing axis-aligned bounding box. | |
Defines | |
#define | OBJ_AMBIGUOUS "AMBIGUOUS" |
#define | OBJ_UNDEFINED "UNDEFINED" |
Variables | |
const char * | moab::object_start_token = "o" |
const char * | moab::group_start_token = "g" |
const char * | moab::vertex_start_token = "v" |
const char * | moab::face_start_token = "f" |
const char *const | moab::geom_name [] = { "Vertex\0", "Curve\0", "Surface\0", "Volume\0" } |
const char | moab::geom_category [][CATEGORY_TAG_SIZE] = { "Vertex\0", "Curve\0", "Surface\0", "Volume\0", "Group\0" } |
#define OBJ_AMBIGUOUS "AMBIGUOUS" |
Definition at line 53 of file ReadOBJ.cpp.
#define OBJ_UNDEFINED "UNDEFINED" |
Definition at line 54 of file ReadOBJ.cpp.
Referenced by moab::ReadOBJ::match().