1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
// Geometric Tools, LLC
// Copyright (c) 1998-2014
// Distributed under the Boost Software License, Version 1.0.
// http://www.boost.org/LICENSE_1_0.txt
// http://www.geometrictools.com/License/Boost/LICENSE_1_0.txt
//
// File Version: 5.0.1 (2012/07/07)
#ifndef PARTITIONMESH_H
#define PARTITIONMESH_H
#include "Wm5EdgeKey.h"
#include "Wm5HPlane.h"
using namespace Wm5;
class PartitionMesh
{
public:
PartitionMesh (const std::vector<APoint>& vertices,
const std::vector<int>& indices, const HPlane& plane,
std::vector<APoint>& clipVertices, std::vector<int>& negIndices,
std::vector<int>& posIndices);
private:
void ClassifyVertices (const std::vector<APoint>& clipVertices,
const HPlane& plane);
void ClassifyEdges (std::vector<APoint>& clipVertices,
const std::vector<int>& indices);
void ClassifyTriangles (const std::vector<int>& indices,
std::vector<int>& negIndices, std::vector<int>& posIndices);
void AppendTriangle (std::vector<int>& indices, int v0, int v1, int v2);
void SplitTrianglePPM (std::vector<int>& negIndices,
std::vector<int>& posIndices, int v0, int v1, int v2);
void SplitTriangleMMP (std::vector<int>& rkNegIndices,
std::vector<int>& rkPosIndices, int v0, int v1, int v2);
void SplitTrianglePMZ (std::vector<int>& rkNegIndices,
std::vector<int>& rkPosIndices, int v0, int v1, int v2);
void SplitTriangleMPZ (std::vector<int>& rkNegIndices,
std::vector<int>& rkPosIndices, int v0, int v1, int v2);
// Stores the signed distances from the vertices to the plane.
std::vector<float> mSignedDistances;
// Stores the edges whose vertices are on opposite sides of the
// plane. The key is a pair of indices into the vertex array.
// The value is the point of intersection of the edge with the
// plane and an index into m_kVertices (the index is larger or
// equal to the number of vertices of incoming rkVertices).
std::map<EdgeKey,std::pair<APoint, int> > mEMap;
};
#endif
|