blob: 9034a26e183ad809046102b7a25ca9c39091c9cb (
plain)
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
|
namespace NGS.MeshFusionPro;
public class CombinedMeshPart
{
public CombinedMesh Root { get; private set; }
public int Index { get; protected set; }
public int VertexStart { get; protected set; }
public int VertexCount { get; protected set; }
public int TrianglesStart { get; protected set; }
public int TrianglesCount { get; protected set; }
public CombinedMeshPart(CombinedMesh root, int index, int vertexStart, int vertexCount, int trianglesStart, int trianglesCount)
{
Root = root;
Index = index;
VertexStart = vertexStart;
VertexCount = vertexCount;
TrianglesStart = trianglesStart;
TrianglesCount = trianglesCount;
}
}
|