|
Pyrogenesis
13997
|
#include "precompiled.h"#include "GeomReindex.h"#include "FCollada.h"#include "FCDocument/FCDEntity.h"#include "FCDocument/FCDGeometryMesh.h"#include "FCDocument/FCDGeometryPolygons.h"#include "FCDocument/FCDGeometryPolygonsInput.h"#include "FCDocument/FCDGeometrySource.h"#include "FCDocument/FCDSkinController.h"#include <cassert>#include <vector>#include <map>#include <algorithm>Go to the source code of this file.
Classes | |
| struct | VertexData |
| struct | InserterWithoutDuplicates< T > |
Macros | |
| #define | CMP(f) if (a.f < b.f) return true; if (a.f > b.f) return false |
Typedefs | |
| typedef std::pair< float, float > | uv_pair_type |
Functions | |
| bool | similar (float a, float b) |
| bool | operator== (const FCDJointWeightPair &a, const FCDJointWeightPair &b) |
| bool | operator< (const FCDJointWeightPair &a, const FCDJointWeightPair &b) |
| bool | operator== (const uv_pair_type &a, const uv_pair_type &b) |
| bool | operator== (const VertexData &a, const VertexData &b) |
| bool | operator< (const VertexData &a, const VertexData &b) |
| void | CanonicaliseWeights (std::vector< FCDJointWeightPair > &weights) |
| void | ReindexGeometry (FCDGeometryPolygons *polys, FCDSkinController *skin) |
| #define CMP | ( | f | ) | if (a.f < b.f) return true; if (a.f > b.f) return false |
| typedef std::pair<float, float> uv_pair_type |
Definition at line 35 of file GeomReindex.cpp.
| void CanonicaliseWeights | ( | std::vector< FCDJointWeightPair > & | weights | ) |
Definition at line 127 of file GeomReindex.cpp.
| bool operator< | ( | const FCDJointWeightPair & | a, |
| const FCDJointWeightPair & | b | ||
| ) |
Definition at line 64 of file GeomReindex.cpp.
| bool operator< | ( | const VertexData & | a, |
| const VertexData & | b | ||
| ) |
Definition at line 90 of file GeomReindex.cpp.
| bool operator== | ( | const FCDJointWeightPair & | a, |
| const FCDJointWeightPair & | b | ||
| ) |
Definition at line 59 of file GeomReindex.cpp.
| bool operator== | ( | const uv_pair_type & | a, |
| const uv_pair_type & | b | ||
| ) |
Definition at line 77 of file GeomReindex.cpp.
| bool operator== | ( | const VertexData & | a, |
| const VertexData & | b | ||
| ) |
Definition at line 82 of file GeomReindex.cpp.
| void ReindexGeometry | ( | FCDGeometryPolygons * | polys, |
| FCDSkinController * | skin | ||
| ) |
Definition at line 134 of file GeomReindex.cpp.
| bool similar | ( | float | a, |
| float | b | ||
| ) |
Definition at line 54 of file GeomReindex.cpp.
1.8.5