Skip to content

Commit

Permalink
Issue bitluni#26 Initialisation reorder
Browse files Browse the repository at this point in the history
  • Loading branch information
Mickey committed Nov 11, 2021
1 parent d10f9b0 commit d7bf0d5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions CompositeVideo/Mesh.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ class Mesh
{
public:
int vertexCount;
int triangleCount;
int edgeCount;
const float (*vertices)[3];
int edgeCount;
const unsigned short (*edges)[2];
int triangleCount;
const unsigned short (*triangles)[3];
const float (*triangleNormals)[3];
short (*tvertices)[3];
signed char (*tTriNormals)[3];
const unsigned short (*triangles)[3];
const unsigned short (*edges)[2];


Mesh(int vertCount, const float verts[][3], int edgeCount_ = 0, const unsigned short edges_[][2] = 0, int triCount = 0, const unsigned short tris[][3] = 0, const float triNorms[][3] = 0)
:vertexCount(vertCount),
vertices(verts),
Expand Down

0 comments on commit d7bf0d5

Please sign in to comment.